脚本特效展示
以下代码加入<head>区域
<SCRIPT> x=false; old=""; function conmuta() { if (x) { document.GIFanim.src=old; document.anim.boton.value="Stop Download"; x=false; } else { old=document.GIFanim.src; document.GIFanim.src="test.gif"; document.anim.boton.value="continue Download"; x=true; } } </SCRIPT>
以下代码加入<body>区域
<table align=center> <tr> <td> <img name="GIFanim" src="../../2p.gif" alt="animated GIF" width="63" height="56"> <tr> <td> <form name="anim"> <input name="boton" type="button" value="Stop Download" onClick="conmuta()"> </form> </table>