mirror of
https://github.com/Foltik/Shimapan
synced 2025-01-07 08:42:49 -05:00
Add video randomization
This commit is contained in:
parent
50a5b7d9e7
commit
8b5ce679e9
@ -6,15 +6,25 @@
|
|||||||
<script src="/js/typegraph.js" defer></script>
|
<script src="/js/typegraph.js" defer></script>
|
||||||
<title>「shimapan.rocks」</title>
|
<title>「shimapan.rocks」</title>
|
||||||
</head>
|
</head>
|
||||||
<body style="background:#000;margin:0;">
|
<body>
|
||||||
<a href="/login"><img src="/img/flower.png"/></a>
|
<a href="/login"><img src="/img/flower.png"/></a>
|
||||||
<canvas id="canvas">
|
<canvas id="canvas">
|
||||||
きみのブラウザはキャンバスを対応しません。Chromeを ダウンロードしてください。
|
きみのブラウザはキャンバスを対応しません。Chromeを ダウンロードしてください。
|
||||||
</canvas>
|
</canvas>
|
||||||
<video autoplay loop id="video">
|
<video autoplay loop id="video">
|
||||||
<source src="/img/edge.mp4" type="video/mp4"/>
|
|
||||||
</video>
|
</video>
|
||||||
<script>document.getElementById("video").volume = 0.2;</script>
|
<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>
|
||||||
<div id="buffer"></div>
|
<div id="buffer"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user