Advertisement
Skater1405

Untitled

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