https://github.com/myokyawhtun/mkhplayer
HTML5 audio and video player jQuery plugin
https://github.com/myokyawhtun/mkhplayer
css html html5 html5-audio html5-video-player javascript jquery jquery-plugin
Last synced: 10 months ago
JSON representation
HTML5 audio and video player jQuery plugin
- Host: GitHub
- URL: https://github.com/myokyawhtun/mkhplayer
- Owner: myokyawhtun
- License: mit
- Created: 2017-03-25T10:53:26.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-06T02:28:33.000Z (almost 9 years ago)
- Last Synced: 2025-04-05T21:11:12.313Z (about 1 year ago)
- Topics: css, html, html5, html5-audio, html5-video-player, javascript, jquery, jquery-plugin
- Language: JavaScript
- Homepage: https://myokyawhtun.github.io/mkhplayer
- Size: 953 KB
- Stars: 9
- Watchers: 1
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MKH Player - jQuery plugin for HTML 5 video and audio
## Usage
```javascript
$('audio').mkhPlayer(); // for audio file
$('video').mkhPlayer(); // for video file
```
## Demo
You can check the demo site [https://myokyawhtun.github.io/mkhplayer](https://myokyawhtun.github.io/mkhplayer).
### Sample
```html
...
...
...
...
...
$(document).ready(function(){
$('audio').mkhPlayer();
});
```