Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="./style.css">
  6. <title>jQuery</title>
  7. <script src="./jquery.js"></script>
  8. <script>
  9.  
  10. $(document).ready(function() {
  11. $('button').click(function(){
  12. $("#wind").css(
  13. right: '+=600'
  14.  
  15. , 5000, function() {
  16. // Animation complete.
  17. });
  18.  
  19. $('#pinwheel').rotateLeft(45);
  20.  
  21. });
  22. });
  23.  
  24.  
  25.  
  26.  
  27.  
  28. </script>
  29.  
  30. </head>
  31. <body>
  32. <button>Start!</button>
  33.  
  34. <div id="wind">
  35. <img src="./wind.png">
  36. </div>
  37. <div id="pinwheel">
  38. <img src="./pinwheel.png">
  39. </div>
  40. </body>
  41. </html>
Add Comment
Please, Sign In to add comment