-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.14 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>東京広域電話網</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="video-background">
<video autoplay loop muted playsinline id="bgVideo">
<source src="./assets/bg.mov" type="video/mp4">
</video>
<div class="grid-overlay"></div>
<div class="fallback-bg"></div>
</div>
<div class="content">
<div class="typewriter-container">
<h1 id="typewriter"></h1>
<span id="cursor">|</span>
</div>
<a id="mantelaButton" href="#">mantela.json</a>
</div>
<div id="modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>mantela.json</h2>
<div class="modal-actions">
<button id="copyButton" class="copy-button">JSONをコピー</button>
</div>
<pre id="jsonContent"></pre>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>