全国统一服务热线:400-633-9193

JS按钮闪烁功能的实现代码

    脚本之家     2017-08-30    1288

js按钮闪烁功能的实现代码分为html和js两部分代码,具体实现代码大家参考下本文

html

1
2
3
<body onload="blinklink()" onunload="stoptimer()">
  <a href="javascript:;" rel="external nofollow" class="iforeginbtn" id="flashit">马上注册领取</a>
</div>

js

1
2
3
4
5
6
7
8
9
10
11
12
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);
}


  分享到:  
0.2046s