ivana_andreevska

Random Animacija 2

Jan 18th, 2022
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Rezerva</title>
  6.     <link rel="stylesheet" href="jquery_ui.css">
  7.     <script src="jquery.js"></script>
  8.     <script src="jquery-ui.js"></script>
  9.     <style>
  10.     .box{
  11.         background: black;
  12.         height: 50px;
  13.         width: 50px;
  14.     }
  15.     .red{
  16.         background: red;
  17.  
  18.     }
  19.     </style>
  20. </head>
  21. <body>
  22. <button id="moveDown">Move Down</button>
  23. <button id="moveUp">Move Up</button>
  24. <button id="moveLeft">Move Left</button>
  25. <button id="moveRight">Move Right</button>
  26. <div class="box">
  27.  
  28. </div>
  29. <script>
  30. $("#moveUp").click(function (){
  31.     $(".box").animate({
  32.         marginTop:"-=50px"
  33.     },1000)
  34. })
  35. $("#moveDown").click(function (){
  36.   $(".box").animate({
  37.       marginTop:"+=50px"
  38.   },1000)
  39. })
  40. $("#moveLeft").click(function (){
  41.     $(".box").animate({
  42.         marginLeft:"-=50px"
  43.     },1000)
  44. })
  45. $("#moveRight").click(function (){
  46.     $(".box").animate({
  47.         marginLeft:"+=50px"
  48.     },1000)
  49. })
  50. $(".box").click(function (){
  51.     $(this).toggleClass('red')
  52. })
  53. </script>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment