我创建了一个用户操作的随机选择器,用户点击一个按钮,系统随机选择两个结果(将是视频)。用户点击一个按钮,系统会随机选择两个结果(将是视频)。
然后页面会交替突出两个随机结果--用户可以再次点击按钮,然后他们可以选择他们想要的视频。
这一切都很好,但交替高亮是通过setTimeout循环完成当前循环,而不是立即停止。
我怎样才能让它在用户按下 "选择 "按钮时,flit功能立即停止--而不是在当前循环结束时?
下面是一个小技巧
http:/jsfiddle.netzandergrintmwst5z94
ps--抱歉,但这是一个渐进式的工作--我知道这里有一些乱七八糟的地方......var interval = 0。
function random() {
// create the array
var posts = ["post 1", "post 2", "post 3", "post 4", "post 5", "post 6", "post 7", "post 8", "post 9", "post 10"];
var results = posts
// Shuffle array
.sort(function () {
return .5 - Math.random()
})
// Get first 2 items
.slice(0, 2);
var post1 = results[0];
var post2 = results[1];
// add them to the DOM
$('#res1').html(post1);
$('#res2').html(post2);
// loop it
interval = setTimeout(random, 100);
}
function start() {
// Hide the start button
$("#start").css("display", "none");
$("#stop").css("display", "block");
// Start the randomizer
random();
}
function stop() {
// Hide the stop button and stop the random() timeout
clearTimeout(interval);
$("#stop").css("display", "none");
$("#select").css("display", "block");
// set the inital background colour
$("#res1").css({'background': '#123','color': '#fff'});
$("#res2").css({'background': '#eee','color': '#000'});
//create a function to flick between items
function flit() {
//color the results
setTimeout(function () {
$("#res1").css({'background': '#eee','color': '#000'});
$("#res2").css({'background': '#123','color': '#fff'});
}, 800);
//colour again after a delay
setTimeout(function () {
$("#res1").css({'background': '#123','color': '#fff'});
$("#res2").css({'background': '#eee','color': '#000'});
}, 1600);
//loop it
timer = setTimeout(arguments.callee, 1600);
};
//run the flick function
flit();
}
function select() {
// stop thie flit function - doesnt stop immediately!
clearTimeout(timer);
$("#select").css("display","none");
$("#refresh").css("display", "block");
}
function refresh() {
location.reload();
}
你的问题是在 flit()
函数--你需要将引用分配给 setTimeout
呼叫,所以你可以呼叫 clearTimeout
在他们身上。现在,你正在停止 flit()
召之即来挥之即去 select()
方法,但这两个定时器仍在排队等待未来执行。
除了 @sholanozie 的回答,我还建议将这些 setTimeout 放在一个数组中(即 arrayOfTimeouts
),然后。
function select() {
// stop thie flit function - doesnt stop immediately!
arrayOfTimeouts.forEach(function(setTimer) {
clearTimeout(setTimer);
});