当前位置:   article > 正文

html5 navigator 手机震动,js实现手机震动_hasdevicemotion

hasdevicemotion

html5 navigator 的 vibrate实现手机震动

主要用到的代码

//if phone support navigator.vibrate
        if (navigator.vibrate) {
            //vibrate 1 second
            navigator.vibrate(1000);
        } else if (navigator.webkitVibrate) {
            navigator.webkitVibrate(1000);
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

代码块

index.html 实现调用shake.js和实现手机震动的功能:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1.0, width=device-width, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Shake.js</title>
<style type="text/css">
body {
    background: #E9E9E9;
    color: #333;
    font: 1em/1.3em "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif; /* 16px / 21px */
    text-shadow: rgba(255,255,255,0.8) 0 1px 0;
    text-align: center;
}
</style>
<
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/97128
推荐阅读
相关标签
  

闽ICP备14008679号