我試圖在用戶在我的網站上輸入時實施振動系統。JavaScript振動腳本修改
我已經使用這個代碼:
var warning = function() {
//
}
setTimeout(warning, 100);
// Play notification
if (window.navigator && window.navigator.vibrate) {
// Vibrate once for 1 second
navigator.vibrate(1000);
// Wait 1 second than display warning
} else {
// Stop vibrating
navigator.vibrate(0);
}
它震動了一次。但它至少需要振動3次以便遊客能夠感受到它。
我該怎麼用這個腳本來做到這一點?
在此先感謝。
因爲我已經在另一邊有一個,所以我不需要在這個腳本上發出警報。 那麼腳本是什麼呢? 我認爲 對不對? –
是的,只要刪除'警告'功能,你認爲合適,並應該工作得很好。 – gyre
非常感謝。 我可以請你有你的Skype(如果你不介意)。 別擔心,我不會打擾你。 :) –