Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.31 KB | None | 0 0
  1. $(document).ready(function()
  2. {
  3.     $('.klocek').mouseover(function(){
  4.         $(this).animate({width: "+=300px", height: "+=300px", left: "100px", opacity: "0.5"}, 1500);
  5.    
  6.     });
  7.     $('.klocek').mouseout(function(){
  8.         $(this).animate({width: "-=300px", height: "-=300px", left: "0px", opacity: "1"}, 1500);
  9.    
  10.     });
  11.  
  12.  
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement