我有一个涉及眨眼检测的javascript功能,会影响视频。基本上,当您眨眼时,从Youtube嵌入的视频将停止播放,并弹出确认对话框,使您可以继续观看视频或重新加载页面。单击“确定”后,视频应该继续播放,但是我希望该功能停止(或相机停止工作),以便即使眨眼也能观看视频直到结束。
我尝试使用该功能,但找不到错误。
这里是该函数的主要代码:
function blink() {
_blinked = true;
_total += 1;
const now = new Date();
const timeDiff = (now - _start) / 1000; //in s
// get seconds
const seconds = Math.round(timeDiff);
if(confirm(`You lasted ${seconds} seconds without blinking! Click OK to
keep playing or CANCEL to watch full video!`)){}
else window.location.replace("fullvideo.html");
_start = new Date();
if (_timeOut > -1) {
clearTimeout(_timeOut);
}
_timeOut = setTimeout(resetBlink, 500);
}
function resetBlink() {
_blinked = false;
}
let _initialized = false;
单击“确定”后,视频应该继续播放,但是我希望该功能停止(或相机停止工作),以便即使眨眼也能观看视频直到结束。 非常感谢。
答案 0 :(得分:1)
最简单的方法是让每个函数切换一个全局布尔值。 在这种情况下,我们将其称为 状态 :
var status = false;
function blink() {
if (!status){
status = true; // close function
_blinked = true;
_total += 1;
const now = new Date();
const timeDiff = (now - _start) / 1000; //in s
// get seconds
const seconds = Math.round(timeDiff);
if(confirm(`You lasted ${seconds} seconds without blinking! Click OK to
keep playing or CANCEL to watch full video!`)){
status = false; //open function to run again
}
else window.location.replace("fullvideo.html");
_start = new Date();
if (_timeOut > -1) {
clearTimeout(_timeOut);
}
_timeOut = setTimeout(resetBlink, 500);
}
}
现在您的功能将只运行一次,然后,如果在消息上单击“确定”,它应该可以再次运行。