Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5.  
  6. .button {
  7. background-color: #4CAF50; /* Green */
  8. border: none;
  9. color: white;
  10. padding: 16px 32px;
  11. text-align: center;
  12. text-decoration: none;
  13. display: inline-block;
  14. font-size: 16px;
  15. margin: 4px 2px;
  16. -webkit-transition-duration: 0.4s; /* Safari */
  17. transition-duration: 0.4s;
  18. cursor: pointer;
  19. }
  20.  
  21.  
  22. .button1 {
  23. background-color: green;
  24. color: black;
  25. border: 2px solid #4CAF50;
  26. }
  27.  
  28. .button1:hover {
  29. background-color: black;
  30. color: white;
  31. }
  32.  
  33.  
  34. </style>
  35. <title>LSD TRIP</title>
  36. <script type="text/javascript">
  37. function startlsd(){
  38. setTimeout(startlsd, 50);
  39.  
  40. var ColorList = ["red","green","purple","orange","blue"]
  41. var RandElement = ColorList[Math.floor(Math.random()*(ColorList.length))];
  42. document.body.style.backgroundColor = RandElement;
  43.  
  44. }
  45.  
  46.  
  47.  
  48. </script>
  49. </head>
  50. <body>
  51. <form align="center" >
  52. <input type="button" class="button button1" value="Start LSD Trip" id="activate" onclick="startlsd()">
  53.  
  54.  
  55.  
  56. </form>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement