为了账号安全,请及时绑定邮箱和手机立即绑定

clearTimeout()

 // JavaScript Document
var t1,t2,t3;
//闪烁函数
function flush()
{
intrvl=0;
var title=document.getElementById('title');
for(nTimes=0;nTimes<100;nTimes++)
{
intrvl += 200;
t1=setTimeout("title.style.background='pink';",intrvl);
intrvl += 200;
t2=setTimeout("title.style.background='blue';",intrvl);
intrvl +=200;
t3=setTimeout("title.style.background='yellow'",intrvl);
  }
}
//实现关闭色彩变化

//抽奖类
var data=['相机','手机','打印机','谢谢参与','购物券'],
timer=null,
flag=0;//记录键盘的次数

window.onload=function(){
var plays=document.getElementById('play'),
stops=document.getElementById('stop');
//开始抽奖
plays.onclick=playFun;
stops.onclick=stopFun;
//键盘事件
document.onkeyup=function(event){
event=event||window.event;
if(event.keyCode==13){
if(flag==0){
playFun();
flush();
flag=1;
}else{
stopFun();
stopflush();
flag=0;
}
}
}
}
function playFun(){
var that=this;
var title=document.getElementById('title'),
    playsStyle=document.getElementById('play');
clearInterval(timer);
timer=setInterval(function(){
var randoms=Math.floor(Math.random()*data.length);
title.innerHTML=data[randoms];},80);
playsStyle.style.background="#999";
flush();
}
function stopFun(){
clearInterval(timer);
var plays=document.getElementById('play');
plays.style.background='pink';
}


潭州学子-1958 2016-04-06 17:50:37

大神们,请问这里要实现关闭色彩变化,应该如何做?

潭州学子-1958 2016-04-06 17:51:38

我用写了一个stopFlush(){clearTimeout(t1)...t2..t3;}关闭不了 


正在回答

1 回答

你这逻辑好奇怪呀,按照你这样写要关闭色彩变化的话是要停止循环,定义一个变量stop值为false,stopFlush中将stop置为true,循环中判断stop的值来确认是否跳出循环,不过建议修改一下整个的实现逻辑

0 回复 有任何疑惑可以回复我~
#1

慕田峪8115978 提问者

非常感谢!
2016-05-25 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
DOM事件探秘
  • 参与学习       99544    人
  • 解答问题       1197    个

DOM事件?本课程会通过实例来给小伙伴们讲解如何使用这些事件

进入课程

clearTimeout()

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信