溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

利用Vue怎么編寫一個搖一搖功能

發(fā)布時間:2021-01-26 13:56:14 來源:億速云 閱讀:300 作者:Leah 欄目:開發(fā)技術(shù)

利用Vue怎么編寫一個搖一搖功能?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

利用Vue怎么編寫一個搖一搖功能

<van-popup v-model="isTip" class="popInfo" :close-on-click-overlay="false">
 <div class="mainBody">
 <h4 class="systemTip">溫馨提示</h4>
 <div class="confirm">
 由于ios系統(tǒng)需要手動獲取訪問動作與方向的權(quán)限,為保障游戲的正常進行,請在訪問提示中點擊允許。
 </div>
 </div>
 <button class="bottomButton" @click="handleInit">
 知道了
 </button>
</van-popup>

shake.js

//引入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, // 搖動閾值
 timeout: 1000 // 事件發(fā)生頻率,是可選值
 });
 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() //搖一搖
 } else if(permissionState === 'denied'){// 打開的鏈接不是https開頭
 alert("當(dāng)前IOS系統(tǒng)拒絕訪問動作與方向。請退出微信,重新進入活動頁面獲取權(quán)限?;蛑苯狱c擊抽簽桶參與活動")
 }
 }).catch((error) => {
 alert("請求設(shè)備方向或動作訪問需要用戶手勢來提示")
 })
 } else {
 // 處理常規(guī)的非iOS 13+設(shè)備
 alert("處理常規(guī)的非iOS 13+設(shè)備")
 }
 },
}

關(guān)于利用Vue怎么編寫一個搖一搖功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI