-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Embedded iframe Example</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
</head>
<body>
<div id="sidebar" class="sidebar">
<div class="logo-container">
<img src="logo.png" alt="Logo" class="logo" />
</div>
<button id="toggleSidebar" class="toggle-btn">
<i class="fas fa-bars"></i>
</button>
<div class="button-container">
<button
class="scene-button"
data-scene="scene_2d792958-3431-4411-9b1b-e1c3b332ed98"
>
Scene 1
</button>
<button
class="scene-button"
data-scene="scene_0abbe855-ebc2-41d7-93ce-22301d6460a2"
>
Scene 2
</button>
<button
class="scene-button"
data-scene="scene_0277c6ea-2f0b-4d2d-ac95-ff54de72b942"
>
Scene 3
</button>
<button
class="scene-button"
data-scene="scene_9f69e9d9-645f-479e-92a0-49ffa7c41562"
>
Scene 4
</button>
<button
class="scene-button"
data-scene="scene_efbdfb67-7b7b-4e84-be22-5b2b072daff3"
>
Scene 5
</button>
</div>
</div>
<div class="iframe-container">
<iframe
id="storyIframe"
src="https://www.cyango.com/story/66d8a563c4d35de3f73ff3c6"
frameborder="0"
></iframe>
</div>
<script src="script.js"></script>
</body>
</html>