ただiframeの中にEmbedを書き込みIframeを非表示にするだけ。
これで怪しいサイト作れちゃうね。Iframeって恐ろしい。
まぁそんなものよりもYoutubeなんかの動画をBGMとして使うには活用できそう。
結構面倒かもしれないけど、スクリプトも加えれるしね。
一応コード。面倒だからdocument.writeで書いちゃってます。
<iframe
name=”test”
width=”100%” height=”100%”
style=”display:none;”>
</iframe>
<script>
test.document.write(“
<embed
src=’http://www.youtube.com/v/IGiYYIi-H8k?autoplay=1′
width=’100%’ height=’100%’
type=’application/x-shockwave-flash’
allowscriptaccess=’always’
allowfullscreen=’true’
style=’padding:0px;margin:0px;’>
</embed>”
);
</script>