-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.html
77 lines (66 loc) · 3 KB
/
Main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Main</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="animate.css">
<link href='https://fonts.googleapis.com/css?family=Aldrich' rel='stylesheet'>
</head>
<body>
<div id="panel1">
<div id="titlecontainer" class="titlecontainer animated fadeInDownBig">
<div class="info">
<div class="title animated tada" style="animation-delay: 2s;">
<div id="header">8 PUZZLE</div>
</div>
</div>
<div class="info">
<div class="title animated jackInTheBox" style="animation-delay: 1s;">Name Surname</div>
</div>
<div class="info">
<div class="title animated fadeInDown" style="animation-delay: 2s;">12345678912</div>
</div>
<div class="title animated fadeInDown" style="animation-delay: 1s;"><button class="button1">Start!</button></div>
</div>
</div>
<div id="panel2">
<div id="imagespagecontainer">
<div id="selectimagetitle"><h1>Select an Image</h1></div>
<div id="imagecontainer">
<div class="images"><img id="img1" src="img1.jpg" alt="img"></div>
<div class="images"><img id="img2" src="img2.jpg" alt="img"></div>
<div class="images"><img id="img3" src="img3.jpg" alt="img"></div>
</div>
<div class="buttoncontainer" style="display: none;">
<div class="title animated jackInTheBox" style="animation-delay: 0.2s;"><button class="button2">Continue!</button></div>
</div>
</div>
</div>
<div id="panel3">
<div id="piece1" class="piece"></div>
<div id="piece2" class="piece"></div>
<div id="piece3" class="piece"></div>
<div id="piece4" class="piece"></div>
<div id="piece5" class="piece"></div>
<div id="piece6" class="piece"></div>
<div id="piece7" class="piece"></div>
<div id="piece8" class="piece"></div>
<div id="select">Select : </div>
<select id="shuffleoption">
<option value="0" selected>Shuffle Amount!</option>
<option value="3">3 Moves</option>
<option value="30">30 Moves</option>
</select>
<button class="title animated rubberBand" id="shufflebutton">Shuffle</button>
<div id="solvebutton">SOLVE PUZZLE NOW</div>
</div>
<div class="title animated flip" id="true">CONGRATULATIONS</div>
<div class="title animated slideInRight" id="restart">F5 to Restart</div>
<script src="jquery-3.3.1.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>