-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 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
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta charset="utf-8" />
</head>
<style>
#info {
position: absolute;
top: 0;
right: 0;
width: 200px;
height: 100%;
}
.copyright {
position: fixed;
bottom: 0;
right: 0;
margin: 10px;
font-size: 20px;
color: #000000;
}
</style>
<script>
if (/Mobi/.test(navigator.userAgent)) {
alert("PC chromeでのみ動作確認しています");
}
</script>
<body style="background-color: rgb(255, 253, 253)">
<main style="align-self: center"></main>
<div id="info">
<a
href="http://twitter.com/share?url=https://koragen256.github.io/sayonaraJackpot/&hashtags=さよならジャックポットしみゅれーたー"
>
<img src="src/IMG_1558.png" width="200" />
</a>
</div>
<a class="copyright" href="https://twitter.com/igusuri_please">
Thanks for iyowa
</a>
<script src="sketch.js"></script>
</body>
</html>