Demo: http://www.codebasehero.com/files/video-player/demo/
https://www.box.com/s/1ml4r6oga3jekzs2wobp
Hoặc
video-player
Tính năng
- Xây dựng với JPlayer
- Chọn các nút hiển thị
- Xây dựng trong danh sách
- Chức năng Like
- Chế độ HD và SD
Cách sử dụng
$('selector').ttwVideoPlayer(playlist, options);
Danh sách đầy đủ các tùy chọn
{
autoplay:false,
buttons:['playlist', 'hd', 'heart', 'settings' 'fullscreen'],
width: "554px",
height: "312px",
hdPlaylist:[],
autoHidePlaylist:true,
autoHidePlaylistDelay:3000,
playlistButtonCallback:function(){
fires when the playlist button is clicked
},
hdButtonCallback:function(){
fires when the HD button is clicked
},
heartButtonCallback:function(){
fires when the heart button is clicked
},
settingsButtonCallback:function(){
fires when the settings button is clicked
},
fullscreenButtonCallback:function(){
fires when the fullscreen button is clicked
},
allowHeartIncrement:function(){
//use this to determine if the heart count should be updated. If you only want to limit a user to
//one click, you would enforce that requirement here. This function should always return true or false
return true;
}
jPlayer:{}, //these are the jPlayer options. Use the structure defined on the jPlayer site, or leave off to use defaults
};