gpt4 book ai didi

javascript - 在 ReactJS 中实现振动

转载 作者:行者123 更新时间:2023-12-02 23:25:43 24 4
gpt4 key购买 nike

我想用我的代码的某些部分(不相关)使设备振动,我已经看到了一些js方法,但我无法让它在react中工作。这是我迄今为止在函数内部尝试过的:

window.navigator.vibrate(200);
navigator.vibrate([1000, 500, 1000]);
navigator.vibrate(Infinity); // Infinity is a number

最佳答案

检查并确保您当前的浏览器支持振动

if ("vibrate" in navigator) {
// vibration API supported
navigator.vibrate(1000);
}

// enable vibration support
navigator.vibrate = navigator.vibrate || navigator.webkitVibrate || navigator.mozVibrate || navigator.msVibrate;

if (navigator.vibrate) {
// vibration API supported
navigator.vibrate(1000);
}

关于javascript - 在 ReactJS 中实现振动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56743996/

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