-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmouse.php
32 lines (27 loc) · 868 Bytes
/
mouse.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
32
<?php
echo file_get_contents('head.html');
?>
<div id="circle"></div>
<div class="col-sm-12">
<h3>Mouse</h3>
<hr>
</div>
<div class="col-sm-6">
<p>
Doormiddel van Javascript de cursor laten volgen.
Met dubbelklik wordt de cirkel groter en/of kleiner.
<br><br>
Druk op "Start" om hem te starten.
</p>
<button onclick="start()" class="btn btn-success">Start</button>
<button onclick="stop()" class="btn btn-danger">Stop</button>
</div>
<div class="col-sm-6">
<pre class="language-javascript"><code><?php echo file_get_contents('js/mouse.js'); ?></code></pre>
</div>
<div class="col-sm-12"></div>
<link rel="stylesheet" href="css/mouse.css">
<script src="js/mouse.js"></script>
<?php
echo file_get_contents('end.html');
?>