Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>aaa</title>
  4. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  5. <style type="text/css">
  6. body {
  7. background-color: yellow;
  8. transition: all linear 3s;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <a href="http://google.com/" id="google_link">Google</a><br />
  14. <a href="#" class="color-x">red</a>,
  15. <a href="#" class="color-x">blue</a>,
  16. <a href="#" class="color-x">cyan</a>,
  17. <a href="#" class="color-x">black</a>,
  18. <a href="#" class="color-x">yellow</a>,
  19. <script type="text/javascript">
  20. $("#google_link").on("click", function () {
  21. alert("Going to google?");
  22.  
  23. $("#google_link").attr("href", "http://apple.com/");
  24. });
  25. setTimeout(function () {
  26. $("body").css("background-color", "red");
  27. }, 500);
  28. $(".color-x").on("click", function () {
  29. var color = $(this).html();
  30. $("body").css("background-color", color);
  31. });
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement