0

自動再生を使用している Web サイトのすべてのページにアクセスするときに、数秒の遅延を追加したいと考えています。enter code here新しいページにアクセスするたびにデフォルトの音楽が1〜2秒間開始されるため、音楽が開始する前に数秒の遅延を追加できるように、flashvarsで使用できるパラメーターはありますか。

<<>>`

<object type="application/x-shockwave-flash" wmode="transparent" data="player_mp3_maxi.swf" width="65" height="20">
<param name="movie" value="player_mp3_maxi.swf" />
<param name="bgcolor" value="#ffffff" />
<param name="wmode" value="transparent" />
<param name="FlashVars" value="mp3=dummy.mp3&amp;width=65&amp;loop=0&amp;autoplay=1&  amp;volume=60&amp;showvolume=1&amp;showslider=0&amp;showloading=always&amp;buttonwidth=30&amp;volumeheight=8&amp;" />
</object>

<<>>

<script type="text/javascript">
$(document).ready(function () {
var mp3snd = "/JSRDS/Content/mp3s/PPK_Resurection.mp3";
if ((window.top.location.toString().toLowerCase().lastIndexOf("root/") + 6) ==         window.top.location.toString().toLowerCase().length) {mp3snd = "PPK_Resurection.mp3";
}
else if (window.top.location.toString().toLowerCase().indexOf('page1.aspx') != -1) {
 mp3snd = "PPK_Resurection.mp3";
}
else if (window.top.location.toString().toLowerCase().indexOf('page2.aspx') != -1) {
mp3snd = "GottaWearShades_Intellect.mp3";
}
else if (window.top.location.toString().toLowerCase().indexOf('page3.aspx') != -1) {
mp3snd = "MissionImpossible_Rhodium.mp3";
}
        else if (window.top.location.toString().toLowerCase().indexOf('page4.aspx') != -1) {
            mp3snd = "Opportunities_Projects.mp3";
        }
        else if (window.top.location.toString().toLowerCase().indexOf('page5.aspx') != -1) {
            mp3snd = "";
        }
        else if (window.top.location.toString().toLowerCase().indexOf('page6.aspx') != -1) {
            mp3snd = "HawaiiFiveO_Media.mp3";
        }
        else if (window.top.location.toString().toLowerCase().indexOf('page7.aspx') != -1) {
            mp3snd = "SayYouSayMe_Photos.mp3";
        }
        else if (window.top.location.toString().toLowerCase().indexOf('page8.aspx') != -1) {
            mp3snd = "TheLionSleepsTonight_Shihara.mp3";
        }
        else if (window.top.location.toString().toLowerCase().indexOf('page9.aspx') != -1) {
            mp3snd = "ItsMyLife192vbr_History.mp3";
        }
        else if (window.top.location.toString().toLowerCase().indexOf('page10.aspx') != -1) {
            mp3snd = "";
        }
        else if (window.top.location.toString().toLowerCase().indexOf('page11.aspx') != -1) {
            mp3snd = "";
        }
        else if (window.top.location.toString().toLowerCase().indexOf('page12.aspx') != -1) {
            mp3snd = "";
        }

        $(".volumeControl").html($(".volumeControl").html().replace("dummy.mp3", mp3snd));
    });
</script>

`

4

1 に答える 1

0

swf を制御できる場合 (つまり、fla がある場合) は、setTimeoutを使用してください。

ロジックは、flashvars でパラメーターを渡すことによって制御できます。

stop();

setTimeout( playMovie, 1000 )

function playMovie() {

     play();
}

それ以外の JS では、 swfobjectsetTimeoutを使用してページへのファイルの挿入を遅らせることができます。

setTimeout (injectSWF , 1000);

function injectSWF() { 

     swfobject.embedSWF("myMovie.swf", "ofc", "100%", "100%", "9.0.0"); 
}
于 2012-07-27T05:07:36.743 に答える