我的网站上有一个音乐播放器,这里是代码:
<!-- player -->
<div id="player">
<div class="playerIcon"><img src="../img/musicIcon.gif" alt="" width="21" height="19" border="0"></div>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="30" height="30" id="player1">
<PARAM NAME=movie VALUE="audioplay.swf?playerid=1">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=wmode VALUE="transparent">
<PARAM NAME="allowScriptAccess" value="always" />
<embed wmode="transparent" src="audioplay.swf?playerid=1" quality=high width="30" height="30" name="player1" allowScriptAccess="always"
align="" TYPE="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
<script language="javascript">
function getPlayer(movieName){
if (navigator.appName.indexOf("Microsoft") != -1) {
return window[movieName];}
else {
return document[movieName];
}
}
function play1() {
getPlayer('player1').playMusic();
}
function stop1(){
getPlayer('player1').stopMusic();
}
</script>
</div>
<!-- end player -->
此处, player1 在点击暂停音乐时有自己的图标和开关状态。当我点击播放器图标时,我想将动画 musicIcon.gif img更改为非动画的。我怎样才能做到这一点? 谢谢和问候
答案 0 :(得分:0)
你能在对象元素上放置一个点击监听器吗?调用时,它应该查看电影的状态,如果它已停止,请将<img src="..." ...>
替换为静态图像。如果它正在运行,请使用动画。
您也可以在页面中同时拥有这两个图片,只需在'none'和''之间切换 .style.display 属性(空字符串)。