自動再生を使用している 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&width=65&loop=0&autoplay=1& amp;volume=60&showvolume=1&showslider=0&showloading=always&buttonwidth=30&volumeheight=8&" />
</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>
`