• swfobject的用法 Html中嵌入Flash/swf


    官方网址介绍
    http://code.google.com/p/swfobject/wiki/documentation

    用法:
    html部分
    <div id="swf1">......</div>
    js部分   
    swfobject.embedSWF("test.swf", "swf1", "300", "120", "9.0.0",);

    源码部分
    这是2.2中的源码。看参数就明白怎么使用了。
    embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj, callbackFn) {

    ....}

    详解
    首先需要了解object标签。
    http://www.w3school.com.cn/tags/tag_object.asp
    http://www.w3school.com.cn/tags/tag_param.asp

    swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr
    这些依次为,swf位置,html要替换成flash的元素的id,宽,高,flash版本,如果没有flash那就使用这个自动安装flash的文件 swfobject2.2源文件里有

    flashvarsObj:这里是flashvars的值。这个常用来作为html与flash之间传递参数,本来是在params对象中的属性,由于考虑到常用和方便,所以单独取了出来。可以设置为null。然后在param中写。

    param对象的属性:
    详细的介绍http://kb2.adobe.com/cps/127/tn_12701.html
    play,loop,menu,quality,scale,salign,bgcolor,base,swliveconnect,flahvars,devicefont ,allowscriptaccess ,seamlesstabbing ,allowfullscreen ,allownetworking
    wmode     这个很重要,window,opaque,transparent(一般设为transparent透明或者opaque不透明)。当不设置时默认为window,这时已窗口方式呈现。这时object元素将始终显示在最上面,同时点击事件等也监听不到。

    attributes对象的属性:id,name,styleclass(不使用class,因为class也是ECMA4的保留关键字),align

    callbackFn:回调函数

  • 相关阅读:
    [转]《鸟人》想拍个文艺片,为什么要自虐
    [转] Java内部类之闭包(closure)与回调(callback)
    编程模型的笔记
    delphi char数组、string和Pchar的相互转换
    Char 与 Byte
    根据函数名称---函数指针--调用函数
    procedure of object 对象的函数指针
    虚方法、抽象方法、抽象类、重定义、覆盖重写------我自己
    Delphi 中的自动释放策略
    Delphi中设置条件断点
  • 原文地址:https://www.cnblogs.com/x38160/p/3175844.html
Copyright © 2020-2023  润新知