An open API service indexing awesome lists of open source software.

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

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();
});

```