-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (28 loc) · 1.24 KB
/
index.html
File metadata and controls
59 lines (28 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>jsFunctions🔐</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h3 id="h3" style="margin-top: 20px;"> 🖐 👀 </h3>
<h1 id="h1">javaScript codes with test-buttons.</h1>
<img id="img1" src="vinkel.jpg">
<img id="img2" src="MindFuck.png" >
<img src="turnLeft.png" id="resetImg" style="display: none;" onclick="resetPage()">
<div id="text"></div>
<div class="button-container" id="btns">
<button id="mirrorPageBtn" onclick="mirrorPage()">Mirror</button>
<button id="messUpBtn" onclick="messUp()">MessUp</button>
<button id="spinnPageBtn" onclick="spinnPage()">Spinner</button>
<button id="turnRightBtn" onclick="turnRight()">Turn Right</button>
<button id="colorFlashBtn" onclick="colorFlash()">Color Flash</button>
<button id="step360Btn" onclick="rotate360()">3 Step=360dgs</button>
<button id="goEmptyBtn" onclick="go_empty()">Go Empty</button>
<button id="freezeBtn" onclick="freez()">Freeze⚠️</button>
</div>
<script src="app.js"></script>
</body>
</html>