Advertisement
Skater1405

Untitled

Dec 31st, 2011
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
  5. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  6. <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
  7. <style type="text/css">
  8. div { margin: 0px; width: 200px; height: 122px; background-image:url(http://clubpenguinmemories.com/buttons/globe/globe.png); position:fixed; float:right; right:0px; bottom:0px; }
  9. </style>
  10.  
  11. <script>
  12. $(document).ready(function() {
  13.  
  14. $("div").click(function () {
  15. $(this).effect("shake", { times:3 }, 150);
  16. });
  17.  
  18. });
  19. </script>
  20. </head>
  21. <body>
  22. <div></div>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement