gpt4 book ai didi

javascript - 如何在函数执行之前等待一秒钟

转载 作者:行者123 更新时间:2023-12-02 14:49:17 26 4
gpt4 key购买 nike

如何让这个js函数在触摸屏幕一秒后执行和如果我继续在同一位置触摸屏幕一秒钟,如何使其成为同一触摸位置的一秒钟?

function onCanvasTouchStart(event)
{
if(event.touches.length == 1)
{
// draw
event.preventDefault();
brush.strokeStart((event.touches[0].pageX) - canvas.offsetLeft, (event.touches[0].pageY) - canvas.offsetTop);
window.addEventListener('touchmove', onCanvasTouchMove, false);
window.addEventListener('touchend', onCanvasTouchEnd, false);
}
}

最佳答案

使用setTimeOut .

function onCanvasTouchStart( event ){
if(event.touches.length == 1){
setTimeout(function(){
// draw
event.preventDefault();

brush.strokeStart( (event.touches[0].pageX) - canvas.offsetLeft, (event.touches[0].pageY) - canvas.offsetTop );

window.addEventListener('touchmove', onCanvasTouchMove, false);
window.addEventListener('touchend', onCanvasTouchEnd, false);
}, 1000);

}

}

关于javascript - 如何在函数执行之前等待一秒钟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36314591/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com