弹窗视频
优质
小牛编辑
136浏览
2023-12-01
说明
调用方法1:
- $.f2eAct.video(options);
函数说明:
视频弹窗
参数说明:
参数名 | 类型 | 说明 | 备注 |
---|---|---|---|
width | int | 视频宽度 | 必要 |
height | int | 视频高度 | 必要 |
url | string | 视频地址 | 必要 |
类绑定
<html>
<div class="f2e-act-video" data-width="500" data-height="400" data-url=""></div>
</html>
脚本
<script>
var opts = {
"width":720,
"height":430,
"url":"http://assets.dwstatic.com/video/vpp.swf?uu=a04808d307&vu=&videoId=0&vid=174564&continous_play=0&auto_play=1&channelId=bfx"
}
$.f2eAct.video(opts);
</script>