flash
优质
小牛编辑
118浏览
2023-12-01
说明
调用方法1:
- $.f2eAct.flash(options);
函数说明:
创建flash对象 参考资料:http://www.cnblogs.com/wqing/archive/2012/06/25/2562888.html
参数说明:
参数名 | 类型 | 说明 | 备注 |
---|---|---|---|
el | string | dom元素id,不能是class | 必要 |
url | string | 地址 | 必要 |
width | int | 宽 | 必要 |
height | int | 高 | 必要 |
param | object | 其他参数 默认值如下 | |
variable | object | 其他传值 默认为null |
param 默认为{ allowfullscreen:"true", allowscriptaccess:"always", wmode:"transparent", quality:"high", salign:"lt" }
脚本
<div id="flashBox"></div>
<script>
$.f2eAct.flash({
el:"flashBox",
url: "http://dts.yy.com/s/dts/bg.swf",
width:1018,
height:313
})
</script>