Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <script type="text/javascript">
  3. function butts2() {
  4. var chance = Math.random()*200
  5. Math.round(chance);
  6. alert(chance + "%");
  7. }
  8. function butts() {
  9. var chance = Math.random()*100
  10. Math.round(chance);
  11. alert(chance + "%");
  12. }
  13. function butts3() {
  14. var chance = Math.random()*50
  15. Math.round(chance);
  16. alert(chance + "%");
  17. }
  18. </script>
  19. <button id="asdf" onclick="butts2()">Randomizer/</button>
  20. <button id="asdf" onclick="butts()">Randomizer</button>
  21. <button id="asdf" onclick="butts3()">Randomizer /</button>
  22. <style>
  23. #asdf {
  24. margin: 50px;
  25. padding: 50px;
  26. font-family: Arial;
  27. font-size: 100px;
  28. text-align: center;
  29. border-width: 20px;
  30. }
  31. body {
  32. background-color: #73F8FA;
  33. }
  34. </style>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement