A simple file sharing site with an easy to use API and online panel.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

28 lines
918B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>「shimapan.rocks」</title>
  6. <link href="/css/index.css" type="text/css" rel="stylesheet"/>
  7. <script src="/js/typegraph.min.js" defer></script>
  8. </head>
  9. <body>
  10. <a href="/login"><img src="/img/flower.png"/></a>
  11. <canvas id="canvas">
  12. きみのブラウザはキャンバスを対応しません。Chromeを ダウンロードしてください。
  13. </canvas>
  14. <video autoplay loop id="video">
  15. </video>
  16. <script>
  17. var videos = [
  18. "/img/edge.webm"
  19. ];
  20. var video = document.createElement("source");
  21. video.setAttribute("src", videos[Math.floor(Math.random() * videos.length)]);
  22. video.setAttribute("type", "video/mp4");
  23. document.getElementById("video").appendChild(video);
  24. document.getElementById("video").volume = 0.2;
  25. </script>
  26. <div id="buffer"></div>
  27. </body>
  28. </html>