[html5]html5视频与视频缩图比例一致的问题处理方式
[html5]html5视频与视频缩图比例一致的问题处理方式
[html5]html5视频与视频缩图比例一致的问题处理方式
- <div class="image-wrap">
- <video id="videoxx" width="默认大小" height="默认大小" poster="默认poster"><source /></video>
- </div>
- <script language="js部分">
- $("videoxx").设置onload = function() {
- aspect_ratio = this.videoWidth / this.videoHeight;
- // 根据得到的宽高比来算video标签高度
- $("videoxx").width=this.videoWidth<img-wrap宽度 ? this.videoWidth : img-wrap宽度;
- $("videoxx").height=$("videoxx").height/aspect_ratio;
- // FIXME: 根据poster的情况可以考虑裁剪或者重新指定另外一张poster
- }
- </script>
- 作者:劳永超
- 链接:https://www.zhihu.com/question/20989836/answer/21869702
- 来源:知乎
热门文章推荐
- 10款html5网页播放器推荐(总有一款适合你)
- [html5]html5+css3实现图片斜角切成直角梯形显示的源代码
- [HTML5]HTML5视频video时间事件代码
- [微信]iOS苹果和微信中音频和视频实现自动播放的方法
- [html5]html5视频全屏实现的源代码
- [Html5]mobile-agent移动Agent,就是具有移动性的智能Agent
- [html5]视频播放器js控制vedio视频和分段播放
- [html5]H5播放器:竖屏播放\横屏播放\跟随旋转例子
请稍候...