UNPKG

blaze-player-litee

Version:

A customizable HTML5 video player with modular controls and themed styling.

35 lines (25 loc) 786 B
# Blaze HTML5 Video Player (Lite Edition) ![image](https://github.com/user-attachments/assets/f4fd0f88-d1ae-41e3-8732-ea0c2720f3a7) # Features - ✅ Play/Pause toggle - ✅ Custom progress bar - ✅ Time display (`currentTime / duration`) - ✅ Volume control with dynamic icons - ✅ Playback speed selector (0.5x, 1x, 2x) - ✅ Fullscreen toggle - ✅ keyboard Controls - ✅ Modular: choose only the controls you want - ✅ Simple API for controlling playback programmatically ⚠️ Don't Change the Logo # Getting Started ### 1.Install via npm ```cmd npm install blaze-player-vlite -g ``` ### 2. HTML Structure ```html <div id="player1" class="video-container"> <video src="video.mp4" width="640" height="360"></video> </div> <script src="blaze-player.js"></script> ```