Search code examples
jqueryhtmlresizescale

I want to resize or scale the div on hover?


Can any one help me, i already checked resizing demo but this work through handles but i need on hover and when div scale then other content automatically go below like this link http://sea-hunters.com/ in this link right side menu have effect on hover?


Solution

  • You can resize using the jQuery animate function.

    $('ul li').hover(function(){
      $(this).animate(... //animate height and width
    }, function(){
      $(this).animate(... //animate back
    });