-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdice.php
31 lines (31 loc) · 1 KB
/
dice.php
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
<?php include 'header.php'; ?>
<section class="dice-section">
<div class="container">
<div class="row">
<div class="col-md-12" style="text-align:center;">
<div class="container">
<?php for ($i = 0 ; $i < 6; $i++): ?>
<div class="dice <?php echo 'dice_'.$i; ?>">
<?php if($i == 2 || $i == 3): ?>
<span></span>
<?php endif; ?>
<?php if($i == 4): ?>
<span class="side"></span>
<span class="center"></span>
<?php endif; ?>
<?php if($i == 5): ?>
<span class="side"></span>
<span class="center"></span>
<?php endif; ?>
</div>
<?php endfor; ?>
</div>
<div class="container">
<button class="btn btn-primary" id="roll">Roll!</button>
<p id="msg-roll"></p>
</div>
</div>
</div>
</div>
</div>
</section>