js按鈕閃爍功能的實作程式碼分為html與js兩部分程式碼,具體實作程式碼大家參考下本文
#html
<body onload="blinklink()" onunload="stoptimer()"> <a href="javascript:;" rel="external nofollow" class="iforeginbtn" id="flashit">马上注册领取</a> </p>
var flashit=document.getElementById('flashit'); function blinklink(){ if(flashit.style.backgroundColor=='rgb(232, 83, 63)'){ //注意:这里拿到的是rgb格式的 flashit.style.backgroundColor='#485fbd'; }else{ flashit.style.backgroundColor='rgb(232, 83, 63)'; } timer=setTimeout("blinklink()",300); } function stoptimer(){ clearTimeout(timer); }
以上是JS按鈕閃爍功能是如何實現的?的詳細內容。更多資訊請關注PHP中文網其他相關文章!