move.gl
Version:
Motion and Animation Library for Stylescape.
21 lines (20 loc) • 692 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Screensaver</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="screensaver" style="display:none;">
<video id="screensaverVideo" loop>
<source src="path/to/your/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<img id="screensaverImage" src="path/to/your/image.jpg" style="display:none;">
<audio id="screensaverAudio" src="path/to/your/audio.mp3"></audio>
</div>
<script src="main.js"></script>
</body>
</html>