-
Notifications
You must be signed in to change notification settings - Fork 0
/
Random.html
85 lines (82 loc) · 3.72 KB
/
Random.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE HTML>
<!--
Photon by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CXGS2MF5T0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CXGS2MF5T0');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2558864594616304"
data-overlays="bottom" crossorigin="anonymous"></script>
<title>Random Dice Breakers</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Game -->
<section id="game">
<div class="inner">
<span><a href="./"><img src="images/DiceBreakersSlogan.png" width="200" height="auto"></a></span>
<h3><b>Random Prompts:</b></h3>
</div>
<h2><div id="pContainer"></div></h2>
</br>
</br>
<ul class="actions special repeat">
<button onclick="document.getElementById('pContainer').innerHTML = repeatRoll();">Roll the Dice!</button>
</ul>
<ul class="actions special order" style="display: none">
<button onclick="document.getElementById('pContainer').innerHTML = orderRoll();">Roll the Dice!</button>
</ul>
<table>
<tr>
<td align="right">Repeats?</td>
<td align="left">
<div class="switcher" style="vertical-align: middle;">
<input type="radio" name="dice" value="repeat" id="repeat" class="switcher__input switcher__input--repeat" checked="">
<label for="repeat" class="switcher__label">Yes</label>
<input type="radio" name="dice" value="order" id="order" class="switcher__input switcher__input--order">
<label for="order" class="switcher__label">No</label>
<span class="switcher__toggle"></span>
</div>
</td>
</tr>
</table>
</br>
<div><p><a href="https://dicebreakers.app/#categories">Change Category</a></p></div>
<ul class="icons">
<p>Want to Share?</p>
<li><a href="https://old.reddit.com/r/DiceBreakers" class="icon brands alt fa-reddit-alien"><span class="label">Reddit</span></a></li>
<li><a href="https://www.instagram.com" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="https://www.twitter.com" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://www.facebook.com" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
</ul>
</div>
</br>
<div><a href="Legal.html" title="Privacy Policy and Cookie Settings">Privacy Policy/Cookie Information</a></div>
<ul class="copyright">
<li>© Dice Breakers</li>
<li><a href="mailto: [email protected]" class="icon solid alt fa-envelope"><span class="label">Email</span></a></li>
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</section>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/Random.js"></script>
</body>
</html>