-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircular_menu.html
37 lines (36 loc) · 1.09 KB
/
circular_menu.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Draggable Circular Menu</title>
<link rel="stylesheet" href="css/circular_menu.css">
</head>
<body>
<nav>
<div class="nav-content">
<div class="toggle-btn">
</div>
<span style="--i:1;">
<a href="#"></a>
</span>
<span style="--i:2;">
<a href="#"></a>
</span>
<span style="--i:3;">
<a href="#"></a>
</span>
<span style="--i:4;">
<a href="#"></a>
</span>
<span style="--i:5;">
<a href="#"></a>
</span>
<span style="--i:6;">
<a href="#"></a>
</span>
</div>
</nav>
<script src="scripts/circular_menu.js"></script>
</body>
</html>