Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>    
  4.     <!-- meta -->
  5.     <meta charset="utf-8" />
  6.     <meta name="keywords"  content="" />
  7.     <meta name='viewport' content='width=device-width, initial-scale=1.0'>
  8.    
  9.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  10.     <link rel="stylesheet" href="style.css">
  11.    
  12.     <script>
  13.     $(document).ready(function() {
  14.    
  15.         $('#panda').hover(function(){
  16.             $(this).animate({'opacity':0}, 110);
  17.             setTimeout(function(){
  18.                 $('#panda').css({'background-image': 'url("kwadrat2.png")'});
  19.                 $('#panda').animate({'opacity':1}, 110);
  20.             }, 120);
  21.         }, function(){
  22.             $(this).animate({'opacity':0}, 80);
  23.                 setTimeout(function(){
  24.                 $('#panda').css({'background-image': 'url("kwadrat1.png")'});
  25.                 $('#panda').animate({'opacity':1}, 110);
  26.             }, 120);
  27.             }
  28.         );
  29.    
  30.     });
  31.    
  32.     </script>
  33.    
  34. </head>
  35.    
  36. <body>
  37.  
  38. <div id="panda">
  39.  
  40. </div>
  41.  
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement