UNPKG

move.gl

Version:

Motion and Animation Library for Stylescape.

28 lines (26 loc) 752 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Transparent Video Overlay</title> <style> #videoOverlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; /* Allows clicks to pass through */ display: none; /* Initially hidden */ } </style> </head> <body> <video id="videoOverlay" autoplay loop muted playsinline> <source src="path/to/transparent/video.mp4" type="video/mp4"> Your browser does not support the video tag. </video> <script src="app.js"></script> </body> </html>