html5动画播放器

来源:https://www.sucaihuo.com/js/963.html 2016-10-12 07:02浏览(1328) 收藏

html5一款非常优秀的动画视频播放器。
html5动画播放器
分类:html5 > 视频 难易:初级
查看演示 下载资源 下载积分: 26 积分
关注公众号,免费赠送安装视频教程、环境和学习视频,后面会不断更新。

html5视频代码

<video id="video" controls="" preload="none" poster="images/poster.png" muted=""> 
    <source id="mp4" src="images/trailer.mp4" type="video/mp4"></source> 
    <source id="webm" src="images/trailer.webm" type="video/webm"></source> 
    <source id="ogv" src="images/trailer.ogv" type="video/ogg"></source> 
    <p>Your user agent does not support the HTML5 Video element.</p> 
</video>

引入并播放视频

<script src="js/charlie.js"></script> 
<script>
    CHARLIE.setup(document.getElementById("video"));
</script>
评论0
头像

系统已开启自动识别垃圾评论机制,识别到的自动封号,下载出错或者资源有问题请联系全栈客服QQ 1915635791

1 2