-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
112 lines (77 loc) · 5.21 KB
/
index.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DSA VISUALIZATION </title>
<script src="https://cdn.tailwindcss.com"></script>
<!---------------------------TAILWIND ------------------------------------->
<script src="./js/tailwindConfig.js"></script>
<link rel="stylesheet" href="./style/style.css">
</head>
<body style="background-color:var(--primary);">
<div class="container-fluid">
<div class="grid grid-cols-12">
<!------------------------------------------------ CONTROLLER AREA ------------------------------------------------------------------------------------>
<div class="flex-intial col-span-5 px-3 hidden md:block lg:block" style="border-right: 1px solid grey; height: 100vh; ">
<div class="back-light flex justify-center py-3 px-20 my-5 rounded">
<h1 class="font-thin text-2xl tracking-widest text-center">
<span>DSA VISUALIZER</span>
</h1>
</div>
<section>
<nav>
<input id="toggle" style="border-radius:16px;" type="checkbox" checked>
<h2>SELECT DATA STRUCTURE</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="array.html">Array</a></li>
<li><a href="stack.html">Stack</a></li>
<li><a href="queue.html">Queue</a></li>
<li><a href="priorityqueue.html">Priority Queue</a></li>
<li><a href="singlylinklist.html">Singly Linked List</a></li>
<li><a href="doublylinklist.html">Doubly Linked List</a></li>
<li><a href="binary.html">Binary Search Tree</a></li>
<li><a href="search.html">Search Algorithms</a></li>
<li><a href="sort.html">Sort Algorithms</a></li>
</ul>
</nav>
<!------------------------------ SECTION THAT WILL BE CHANGED [CONTROLLER FOR EVERY DATASTRUCTURE] IN EVERY PAGE ------------------------------------------------------------------->
<div class="container mx-2 font-serif">
<div class="flex flex-col" id="moreInfo">
<h2 class="font-thin text-2xl tracking-widest mt-20 text-secondary mb-5" >HOW TO PLAY?</h2>
<p class="font-serif text-light tracking-wide">
<!-- To do things, You can write the instruction for using the website nicely -->
This tool will help you to understand how some specific data structures works.
Things to do and know:</p>
<br>
<ol>
<li><p class="font-serif my-2 text-light tracking-wide info">🎮 <b class="text-secondary">CHOOSE A GAME</b>: Select a data structure from the menu above</p></li>
<li><p class="font-serif my-2 text-light tracking-wide info">🎛️ Every game has a <b class="text-secondary">CONTROL MENU</b>: You will have to use it in order to execute specific action during the game session</p></li>
<li><p class="font-serif my-2 text-light tracking-wide info">📖 Every action of control menu represents the operations that you can do with data structures.</p></li>
<li><p class="font-serif my-2 text-light tracking-wide info">🥳 <b class="text-secondary">HAVE FUN !</p></b></li>
</ol>
</div>
</div>
</section>
</div>
<!--------------------------------------------------------- PLAYGROUND AREAD ------------------------------------------------------------------------------------------------>
<div class="container col-span-12 md:col-span-7 lg:col-span-7 grid place-items-center h-screen back-dark" style="height:100vh">
<div class="animation-wrapper">
<h3 class="text-secondary text-xl text-center block sm:hidden">Please use Screen larger than 768px to enjoy our app.</h3>
<p class="text-secondary my-3 text-center block sm:hidden">DSA VISUALIZER BY GROUP 14</p>
<div class="stagger-visualizer">
<div class="cursor color-red"></div>
<div class="dots-wrapper"></div>
</div>
</div>
</div>
<!--------------------------------------------------------- PLAYGROUND AREA ENDS ------------------------------------------------------------------------------------------------>
</div>
</div>
</body>
<script src="./js/animation/anime.min.js"></script>
<!-- PAGE SPECIFICE ANIMATIION -->
<script src="./js/animation/animationScript.js"></script>
</html>