Vue implements the shake function (compatible with ios13.3 and above)

Vue implements the shake function (compatible with ios13.3 and above)

Recently, I made a function similar to shake, using shake.js. However, the shake function can be triggered in versions before ios13.3, and later versions need to be compatible. It is necessary to create a pop-up box that users can click manually so that users can authorize permissions for actions and directions. (https protocol is required)

<van-popup v-model="isTip" class="popInfo" :close-on-click-overlay="false">
 <div class="mainBody">
 <h3 class="systemTip">Warm Tips</h3>
 <div class="confirm">
 Since the iOS system needs to manually obtain permission to access actions and directions, to ensure the normal progress of the game, please click Allow in the access prompt.
 </div>
 </div>
 <button class="bottomButton" @click="handleInit">
 Got it</button>
</van-popup>

shake.js

//Introduce shake.js
created(){
 this.initShake()
 const isAction = JSON.parse(localStorage.getItem('getAction'))
 var ua = navigator.userAgent.toLowerCase();
 if (ua.indexOf("like mac os x") > 0) {
 var reg = /os [\d._]*/gi ;
 var verinfo = ua.match(reg);
 var version = (verinfo+"").replace(/[^0-9|_.]/ig,"").replace(/_/ig,".");
 if (parseFloat(version) >= 13.3 && !isAction){
 localStorage.setItem("getAction",true)
 this.isTip = true
 }
 }
},
methods:{
 initShake(){
 this.myShakeEvent = new Shake({
 threshold: 15, // shake threshold timeout: 1000 // event frequency, optional value});
 this.myShakeEvent.start();
 window.addEventListener('shake', xx);
 },
 handleInit(){
 this.isTip = false
 this.ios13granted()
 },
 ios13granted() {
 if (typeof DeviceMotionEvent.requestPermission === 'function') {
 DeviceMotionEvent.requestPermission().then(permissionState => {
 if (permissionState === 'granted') {
 this.initShake() //Shake} else if(permissionState === 'denied'){// The link you opened does not begin with https alert("The current IOS system denies access to actions and directions. Please exit WeChat and re-enter the event page to obtain permissions. Or directly click on the lottery bucket to participate in the event")
 }
 }).catch((error) => {
 alert("Requesting device orientation or motion access requires user gestures to prompt")
 })
 } else {
 // Handle regular non-iOS 13+ device alert("Handle regular non-iOS 13+ devices")
 }
 },
}

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • JavaScript+H5 to implement WeChat shake function
  • Analysis of the principle of WeChat shake using JS
  • Implementation of the shake function in javascript html5

<<:  Detailed explanation of nginx optimization in high concurrency scenarios

>>:  What to do if you forget the initial password of MySQL on MAC

Recommend

MySQL data backup and restore sample code

1. Data backup 1. Use mysqldump command to back u...

A brief discussion on macrotasks and microtasks in js

Table of contents 1. About JavaScript 2. JavaScri...

Docker connection mongodb implementation process and code examples

After the container is started Log in to admin fi...

Detailed explanation of the simple use of MySQL query cache

Table of contents 1. Implementation process of qu...

Detailed explanation of the update command for software (library) under Linux

When installing packages on an Ubuntu server, you...

Introduction to vim plugin installation under Linux system

Table of contents Install vim plugin manager Add ...

How to prevent Vue from flashing in small projects

Summary HTML: element plus v-cloak CSS: [v-cloak]...

Solution to the data asymmetry problem between MySQL and Elasticsearch

Solution to the data asymmetry problem between My...

Solution to the error when installing Docker on CentOS version

1. Version Information # cat /etc/system-release ...

jQuery implements accordion small case

This article shares the specific code of jQuery t...

Cross-browser local storage Ⅰ

Original text: http://www.planabc.net/2008/08/05/...

How to create Baidu dead link file

There are two types of dead link formats defined b...

In-depth analysis of MySQL explain usage and results

Preface In daily work, we sometimes run slow quer...

How to implement Docker volume mounting

The creation of the simplest hello world output i...