sunset.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. </head>
  7. <body>
  8. <div class="start" id="start">click to start</div>
  9. <video src="assets/piss baby.mp4" id="video"></video>
  10. <div class="skib">
  11. Skibidihub is over. Thank you for the memories. - SKibididihub team.
  12. </div>
  13. <script>
  14. document.addEventListener("DOMContentLoaded", () => {
  15. document.getElementById("start").addEventListener("click", () => {
  16. document.getElementById("start").style.display = "none";
  17. document.getElementById("video").play();
  18. })
  19. document.getElementById("video").addEventListener("ended", () => {
  20. document.getElementById("video").style.display = "none";
  21. })
  22. })
  23. </script>
  24. <style>
  25. .skib {
  26. position: absolute;
  27. background-color: black;
  28. color: orange;
  29. width: 100vw;
  30. height: 100vh;
  31. font-size: 32px;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. font-family: cursive;
  36. }
  37. html, body {
  38. background-color: black;
  39. width: 100vw;
  40. height: 100vh;
  41. margin: 0;
  42. overflow: hidden;
  43. }
  44. .start {
  45. z-index: 6000;
  46. position: absolute;
  47. background-color: black;
  48. color: white;
  49. width: 100vw;
  50. height: 100vh;
  51. font-size: 32px;
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. }
  56. #video {
  57. z-index: 3000;
  58. position: absolute;
  59. width: 100vw;
  60. height: 100vh;
  61. }
  62. .start:hover {
  63. cursor: pointer;
  64. }
  65. </style>
  66. </body>
  67. </html>