Guest User

Untitled

a guest
Feb 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.27 KB | None | 0 0
  1.      $(".sonuclar li").hover(
  2.   function () {
  3.       $(this).animate({
  4.     height: '+=10px'
  5.   }, 200, function() {
  6.     // Animation complete.
  7.   });
  8.   },
  9.   function () {
  10.       $(this).animate({
  11.     height: '-=10px'
  12.   }, 200, function() {
  13.     // Animation complete.
  14.   });
  15.   }
  16. );
Add Comment
Please, Sign In to add comment