Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="jq.js"></script>
  4. <script type="text/javascript">
  5. $(document).ready(function(){
  6. $("#blok").mouseover(function(){
  7. $(this).animate({
  8. width: "+=300px", height: "+=300px", left: "250px", opacity: "0.5",}, 1500 );
  9. });
  10. $("#blok").mouseout(function(){
  11. $(this).animate({
  12. width: "100px", height: "100px", left: "10px", opacity: "1",}, 1500 );
  13. });
  14. });
  15. </script>
  16. <style type="text/css">
  17. #blok {
  18. width: 100px; height: 100px;
  19. background: #c6d2f2;
  20. position: absolute;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="blok">
  26. </div>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement