JSFiddle - React, Tailwind, and code Playground

by lemon kazi

HTML

<a href="#"><img src="https://i.stack.imgur.com/AoK8f.png" class="small" ></a>

CSS

.small{
  width:200px;
  height:auto;
  transition: ease-out 0.5s;
}

.full{
  width:100%;
  padding: 30px;
}

.dark{
  background-color:black;
}

JavaScript

$(function () {

	$('.small').click(function(){
  		$('.small').toggleClass('full');
      $('body').toggleClass('dark')
  })

 });