🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

An extremely lightweight HTML5 audio/video player built with jQuery that makes it easier to play Audio and Video files with custom controls customized via CSS.

audio-player Video-Player

Documentation

MKH Player - jQuery plugin for HTML 5 video and audio

Usage

$('audio').mkhPlayer(); // for audio file $('video').mkhPlayer(); // for video file

Demo

You can check the demo site https://myokyawhtun.github.io/mkhplayer.

Sample

<html> 	<head> 	... 	... 	<link rel="stylesheet" type="text/css" href="css/mkhplayer.default.css"/> 	... 	</head> 	<body> 	... 	... 		<audio id="music3" preload="metadata"> 			<source src="media/interlude.mp3"> 		</audio>  		<script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.min.js"></script> 		<script type="text/javascript" src="js/jquery.mkhplayer.js"></script> 		<script type="text/javascript"> 			$(document).ready(function(){ 				$('audio').mkhPlayer(); 			}); 		</script> 	</body> </html>

You May Also Like