A simple file sharing site with an easy to use API and online panel.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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>