Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1.  
  2. <!doctype html>
  3. <html>
  4. <head>
  5. <title>JQuerry Lernen</title>
  6.  
  7. <meta charset="utf-8" />
  8. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1" />
  10.  
  11. <style type="text/css">
  12.  
  13. #kreis{
  14.  
  15. height:200px;
  16. width:200px;
  17. border-radius: 100px;
  18. background-color: green;
  19. }
  20.  
  21. </style>
  22.  
  23. <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  24.  
  25. </head>
  26.  
  27. <body>
  28.  
  29.  
  30. <div id = "kreis"></div>
  31.  
  32.  
  33. <script>
  34.  
  35. $("#kreis").click(function(){
  36.  
  37. $(this).animate({
  38. width:"300px",
  39. height:"300px",
  40. borderRadius: "150px",
  41. marginLeft:"100px",
  42. marginTop:"50px",
  43. backgroundColor:"red"
  44.  
  45. },1500);
  46.  
  47. });
  48.  
  49.  
  50.  
  51.  
  52. </script>
  53.  
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement