1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-09-21 11:11:22 -04:00
shimapan/public/views/index.html

30 lines
970 B
HTML
Raw Normal View History

2017-10-09 22:01:02 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
2017-10-14 15:16:58 -04:00
<meta charset="UTF-8">
<link href="/css/index.min.css" type="text/css" rel="stylesheet"/>
2017-10-20 16:46:14 -04:00
<script src="/js/index.min.js" defer></script>
2017-10-14 15:16:58 -04:00
<title>「shimapan.rocks」</title>
2017-10-09 22:01:02 -04:00
</head>
2017-10-16 17:50:09 -04:00
<body>
2017-10-14 15:16:58 -04:00
<a href="/login"><img src="/img/flower.png"/></a>
<canvas id="canvas">
きみのブラウザはキャンバスを対応しません。Chromeを ダウンロードしてください。
</canvas>
<video autoplay loop id="video">
</video>
2017-10-16 17:50:09 -04:00
<script>
var videos = [
"/img/edge.mp4",
"/img/endthis.mp4",
"/img/hell.mp4"
];
var video = document.createElement("source");
video.setAttribute("src", videos[Math.floor(Math.random() * videos.length)]);
video.setAttribute("type", "video/mp4");
document.getElementById("video").appendChild(video);
document.getElementById("video").volume = 0.2;
</script>
2017-10-14 15:16:58 -04:00
<div id="buffer"></div>
2017-10-09 22:01:02 -04:00
</body>
</html>