Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="jquery.js"></script>
  4. <script type="text/javascript">
  5. $(document).ready(function(){
  6. $("button").click(function(){
  7. $("div").animate({height:300,width:300,opacity:.5},"slow");
  8.  
  9. });
  10. });
  11. </script>
  12. </head>
  13.  
  14. <body>
  15. <button>Start Animation</button>
  16. <br /><br />
  17. <div style="background:#98bf21;height:100px;width:100px;position:relative">sdsdf
  18. </div>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement