次の単一コード行はフラッシュで何を意味しますか

StackOverflow https://stackoverflow.com/questions/2542889

  •  23-09-2019
  •  | 
  •  

質問

var so = new swfobject( "zoom.swf"、 "sotester"、 "1200"、 "600"、 "9"、 "#ffffff");

役に立ちましたか?

解決

Swfobjectは、Javasciptを使用してフラッシュムービーをインスタンスする人気のJavaScriptスクリプトです。したがって、これがフラッシュムービー内にある場合、おそらくホストWebページのJavaScriptを参照しています。

議論は次のとおりです。

* swf – The file path and name to your swf file.
* id – The ID of your object or embed tag. The embed tag will also have this value set as it’s name attribute for files that take advantage of swliveconnect.
* width – The width of your Flash movie.
* height – The height of your Flash movie.
* version – The required player version for your Flash content. This can be a string in the format of ‘majorVersion.minorVersion.revision’. An example would be: "6.0.65". Or you can just require the major version, such as "6".
* background-color – This is the hex value of the background color of your Flash movie.

こちらをご覧ください: http://blog.deconcept.com/swfobject/

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top