-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (113 loc) · 4.66 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
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
<!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, user-scalable=0">
<meta name="apple-itunes-app" content="app-id=1510105977, app-clip-bundle-id=me.yuda.journey.Clip, app-clip-display=card">
<meta property="og:image" content="https://asmrtest.com/static/favicon.png">
<title>
ASMR test
</title>
<link rel="icon" href="static/favicon.png">
<link rel="shortcut icon" href="static/favicon.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<style>
h1, h2, h3 {
font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
</style>
</head>
<body class="" style="touch-action: manipulation;">
<header class="m-1">
<div class="row flex-nowrap justify-content-between align-items-center">
<div class="col-2 pt-1"></div>
<div class="col-8 text-center">
<h1 class="display-4">
ASMR Test
</h1>
<p class="lead text-muted">
brought to you by
<a href="https://bemmerse.com/daily-sleep-guide">
Daily Sleep Guide
</a>
</p>
</div>
<div class="col-2 d-flex"></div>
</div>
</header>
<main role="main" class="container" style="">
<section class="my-5 p-5 text-center container bg-light">
<div class="row quiz-start" style="display: none;">
<div class="col-12 mx-auto">
<ul class="list-unstyled">
<li><i class="fas fa-clock"></i> 5-10 minutes</li>
<li><i class="fas fa-headphones"></i> wear headphones</li>
<li><i class="fas fa-check"></i> no distractions</li>
</ul>
<!-- todo: crop and share the trigger video-->
<p>
<button type="button" class="btn btn-large btn-success" onclick="startQuiz();">
Start ASMR Test
</button>
</p>
</div>
</div>
<div class="row quiz-1" style="display: none;">
<div class="col-12 mx-auto">
<video id="video_240_player" class="video_player" controls="" data-mux_url="https://stream.mux.com/ArM7bij3500gApP6Wzha01xkW68WFMyl008.m3u8" style="display: none;"></video>
<!-- <button type="button" class="btn btn-secondary">Next</button>-->
</div>
</div>
<div class="row quiz-finish" style="display: none;">
<div class="col-12 mx-auto">
<h1 class="py-3 fw-light">Results</h1>
<ul class="list-unstyled">
<li><i class="fas fa-heart"></i> whispering</li>
<li><i class="fas fa-heart"></i> page turning</li>
</ul>
<ul class="list-unstyled">
<li><i class="fas fa-times"></i> whispering</li>
<li><i class="fas fa-times"></i> page turning</li>
</ul>
</div>
</div>
</section>
<section class="my-5 text-center container">
<p>
<a href="https://apps.apple.com/app/apple-store/id1510105977?pt=120298522&ct=43&mt=8" class="btn btn-secondary my-2">
Get iPhone App
</a>
</p>
</section>
</main>
<footer class="footer pt-3 mt-5 border-top">
<div class="row justify-content-around align-items-center">
<div class="col-auto">
<p>
ASMRTest.com is provided by
<a href="https://apps.apple.com/app/apple-store/id1510105977?pt=120298522&ct=43&mt=8">
Daily Sleep Guide
</a>
and
<a href="https://bemmerse.com" target="_blank">Bemmerse.com</a>™
</p>
</div>
<div class="col-auto">
<p>
©2021 Yudame, Inc
</p>
</div>
</div>
</footer>
<!--Javascript Placed at the end of the document. Pages load faster. -->
<!-- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/js/all.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<script src="/static/asmrtest.js?v=0"></script>
<script type="application/javascript">
// js here
</script>
</body>
</html>