Get started with Vidage CDN
MIT licensed
Vidage is a lightweight library for video manipulation, providing features like seeking, playing, and controlling video elements.
Tags:- vidage
- full-screen
- video
- image
- background
Stable version
Copied!
How to start using Vidage CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with Vidage CDN - cdnhub.io</title>
<script src="https://cdn.cdnhub.io/Vidage/1.0.1/vidage.js"></script>
</head>
<body>
<video id="myVideo" width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<script>
const video = document.getElementById('myVideo');
vidage(video, {
autoplay: true,
loop: true,
muted: true,
quality: 'auto'
});
</script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!