-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtone.html
More file actions
154 lines (130 loc) · 5.83 KB
/
Copy pathtone.html
File metadata and controls
154 lines (130 loc) · 5.83 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="robots" content="index, follow">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css?8140">
<link rel="stylesheet" type="text/css" href="style.css?349">
<link rel="stylesheet" type="text/css" href="./css/animate.min.css?1218">
<link rel="stylesheet" type="text/css" href="./css/all.min.css">
<link href='https://fonts.googleapis.com/css?family=Oswald&display=swap&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:900,40&display=swap&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<title>tone</title>
<link rel="stylesheet" href="./css/glecko-menu.css">
<link rel="stylesheet" href="./css/glecko-menu.css">
<script src="./js/glecko-menu.js"></script>
<style>
body {
cursor: crosshair;
}
.section-heading:hover {
cursor: not-allowed;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #131313; }
::-webkit-scrollbar-thumb { background: #BD0D0D; }
</style>
<!-- Analytics -->
<!-- Analytics END -->
</head>
<body>
<!-- Preloader -->
<div id="page-loading-blocs-notifaction" class="page-preloader"></div>
<!-- Burger menu -->
<button id="nav-toggle" type="button" class="header--nav-toggle" aria-label="Toggle navigation">
<span class="burger-bar"></span>
<span class="burger-bar"></span>
<span class="burger-bar"></span>
</button>
<div class="perspective effect-rotate-left">
<!-- Main container -->
<div class="page-container">
<!-- Navigation Section -->
<div class="bloc d-bloc" id="navigation">
<div class="container">
<div class="row">
<div class="col-12">
<nav class="navbar navbar-expand-md navbar-dark" role="navigation">
<div class="collapse navbar-collapse navbar-28121">
<ul class="site-navigation nav navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="motion.html" class="nav-link">MOTION</a>
</li>
<li class="nav-item">
<a href="tone.html" class="nav-link a-btn">tone</a>
</li>
<li class="nav-item">
<a href="word.html" class="nav-link a-btn">WORD</a>
</li>
<li class="nav-item">
<a href="image.html" class="nav-link a-btn">IMAGE</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
<!-- Navigation Section END -->
<!-- bloc-5 -->
<div class="bloc l-bloc bloc-fill-screen" id="bloc-5">
<div class="container fill-bloc-top-edge">
<div class="row">
<div class="col-12">
<h1 class="mg-md text-center text-md-left">Collections</h1>
<ul style="list-style: none; padding: 0; margin-top: 2rem;">
<li style="margin: 0.75rem 0;">
<a href="tone/01.html" class="btn btn-d btn-lg btn-clean" style="text-decoration: none;">#01</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- bloc-5 END -->
<!-- ScrollToTop Button -->
<button aria-label="Scroll to top button" class="bloc-button btn btn-d scrollToTop" onclick="scrollToTarget('1',this)"><svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 32 32"><path class="scroll-to-top-btn-icon" d="M30,22.656l-14-13-14,13"/></svg></button>
<!-- ScrollToTop Button END-->
<div class="outer-nav--return"></div>
<!-- Inject footer -->
<div id="footer-placeholder"></div>
</div><!-- .page-container -->
</div> <!-- .perspective -->
<div id="nav-placeholder"></div>
<!-- JS -->
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/blocs.min.js"></script>
<script src="./js/lazysizes.min.js" defer></script>
<script src="./js/glecko-menu.js"></script>
<script>
fetch("nav.html")
.then(res => res.text())
.then(data => {
document.getElementById("nav-placeholder").innerHTML = data;
// Wait a tick for DOM to be ready
setTimeout(() => {
if (window.initGleckoMenu) {
window.initGleckoMenu();
}
}, 50);
});
fetch("footer.html")
.then(res => res.text())
.then(data => {
document.getElementById("footer-placeholder").innerHTML = data;
});
</script>
<!-- Video / Audio Player Auto Pause JS -->
<script>let activePlayer = null; const players = document.querySelectorAll('audio, video'); players.forEach(player => { player.addEventListener('play', function() { if (activePlayer && activePlayer !== this && !activePlayer.hasAttribute('autoplay')) { activePlayer.pause(); } activePlayer = this; }); });</script>
<!-- Video / Audio Player Auto Pause JS -->
</body>
</html>