-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquizgame.html
More file actions
53 lines (51 loc) · 1.17 KB
/
quizgame.html
File metadata and controls
53 lines (51 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>KIRINビールクイズ</title>
<meta charset="utf-8">
<style type="text/css">
<!--
#qfinner {
border:none;
display:block;
}
#quizgame{
}
#canvas {
-ms-touch-action: none;
image-rendering: -o-crisp-edges;
image-rendering: optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-moz-tap-highlight-color: rgba(0,0,0,0);
tap-highlight-color: rgba(0,0,0,0);
user-select: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
#modalclosebt{
width:20px;
height:20px;
border: 1px solid #999;
margin:0;
float:right;
}
-->
</style>
<script>
dataLayer = [];
</script>
</head>
<body style="margin:0;">
<div id="quizgame">
<canvas id="canvas" moz-opaque="" style="width: 330.667px; height: 496px; margin-top: 0px; margin-left: 0;"></canvas>
<!--<p>クイズゲーム</p>-->
</div>
</body>
<script src="ikemu_stats_api.js"></script>
<script src="TweenMax.min.js"></script>
<script src="howler.min.js"></script>
<script src="app.js"></script>
</html>