美文网首页
js调取手机震动

js调取手机震动

作者: fighterboy | 来源:发表于2018-06-15 10:44 被阅读0次

html

onclick="startVibrate(1000);"   // 振动一次

onclick="startVibrate([1000, 200, 1000, 2000, 400]);"  //震动多次

onclick="startPeristentVibrate(1000, 1500);"  //持续震动

onclick="stopVibrate();" //停止震动

js

function startVibrate(level) {            navigator.vibrate(level);        }         

var vibrateInterval;        

function startPeristentVibrate(level, interval) {            vibrateInterval = setInterval(function() {                startVibrate(level);            }, interval);        }               

 function stopVibrate() {            if(vibrateInterval) clearInterval(vibrateInterval);            navigator.vibrate(0);        }

相关文章

网友评论

      本文标题:js调取手机震动

      本文链接:https://www.haomeiwen.com/subject/lpppeftx.html