JSFiddle - React, Tailwind, and code Playground

by hslincoln

HTML

<div id="toggle-button"></div>
<div id="toggle"></div>

CSS

#toggle{
    height:200px;
    width:0px;
    background:url('http://www.harrylincoln.com/120/jw.png');
}
#toggle-button{
    height:20px;
    width:20px;
    background:blue;
}

JavaScript

$('#toggle-button').hover(function() { //fired the first time
  $('#toggle').animate({width:"140px"});
}, function() { // fired the second time 
  $('#toggle').animate({width:"0px"});
    alert('sexy man');
});