フラッシュビデオを埋め込むスクリプト
Embedding Flash
|
|
<div id="flvplayer"></div>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var s1 = new SWFObject("mediaplayer.swf","mediaplayer","420","315","7");
s1.addParam("allowfullscreen","true");
s1.addVariable("width","420");
s1.addVariable("height","315");
s1.addVariable("file","sample2.flv");
s1.addVariable("image","sample2.jpg");
s1.write("flvplayer");
</script>
|
SWF Player: swfファイルを埋め込み再生するときは、下記のスクリプトを使う。
Start Stop
SWFObject |
|
|
<div id="swfplayer"></div>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var so = new SWFObject("flower.swf", "mymovie", "420", "280", "8", "#336699");
so.write("swfplayer");
</script>
|
続きを読む "FLV Playerの埋め込み" »
学習中
Link
There seems to be a lot of confusion about the code needed to properly embed Flash objects within a website: it's the most frequently asked question at this site's forum. The rise of social networking sites like Myspace (who filter lots of codes) and the Eolas patent enforcement have thrown quite some confusion into the mix. In this tutorial, I'll shortly align the best options to embed Flash.
続きを読む "Embedding Flash" »