91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

vue移動端怎么解決click事件延遲,封裝tap等事件

發布時間:2022-03-28 09:47:37 來源:億速云 閱讀:372 作者:小新 欄目:開發技術

小編給大家分享一下vue移動端怎么解決click事件延遲,封裝tap等事件,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

移動端解決click事件延遲,封裝tap等事件

下載vue-touch.js

引入:

<script src="js/vue-touch.js" type="text/javascript" charset="utf-8"></script>

導航條tab:

<div>
                <ul>
                    <li v-tap="{fn:vueTouch,active:0}" :class="{'activezixun':active===0}">全部</li>
                    <li v-tap="{fn:vueTouch,active:1}" :class="{'activezixun':active===1}">養車知識</li>
                    <li v-tap="{fn:vueTouch,active:2}" :class="{'activezixun':active===2}">愛車保養</li>
                    <li v-tap="{fn:vueTouch,active:3}" :class="{'activezixun':active===3}">汽車維修</li>
                </ul>
            </div>

tab對應的列表頁:

<div class="zixunQuanbu" v-show="active===0">
				<div class="items">
				    <a href="zixunItems1.html" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
    					<img class="items-img" src="img/zixun1.png"/>
    					<p class="items-title">跑了10萬公里的車,相當于人的多少歲別在“黃金車齡”把車賣了</p>
    					<p class="items-jianjie"><span class="jianjie-one">對于一輛車來說,它在正常情況下可供時間</span></p>
    					<p class="items-time">2019-04-20 <span class="mui-icon iconfont iconyanjing"></span><span class="liulanliang">1265</span></p>
					</a>
				</div>
 
			</div>
			<!--養車知識-->
			<div class="zixunQuanbu" v-show="active===1">
                <div class="items">
                    <a href="zixunItems1.html" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
                        <img class="items-img" src="img/zixun2.png"/>
                        <p class="items-title">開車是累了記得打開“防疲勞按鍵”, 有人直到車子報廢也沒有開過</p>
                        <p class="items-jianjie"><span class="jianjie-one">其實疲勞駕駛也是有預防措施的,汽車上有</span></p>
                        <p class="items-time">2019-03-20 <span class="mui-icon iconfont iconyanjing"></span><span class="liulanliang">1265</span></p>
                    </a>
                </div>
                
            </div>
            <!--愛車保養-->
            <div class="zixunQuanbu" v-show="active===2">
                <div class="items">
                    <a href="zixunItems1.html" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
                        <img class="items-img" src="img/zixun3.png"/>
                        <p class="items-title">停車后直接就熄火下車?老司機告訴 你:發動機至少折壽5年!</p>
                        <p class="items-jianjie"><span class="jianjie-one">在停車熄火之前隨手多做一步,能讓把發動</span></p>
                        <p class="items-time">2019-02-20 <span class="mui-icon iconfont iconyanjing"></span><span class="liulanliang">1265</span></p>
                    </a>
                </div>
                
            </div>
            <!--汽車維修-->
            <div class="zixunQuanbu" v-show="active===3">
                <div class="items">
                    <a href="zixunItems1.html" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
                        <img class="items-img" src="img/zixun4.png"/>
                        <p class="items-title">這些地方的螺絲被動過,說明你買的是 事故車,一定要注意了</p>
                        <p class="items-jianjie"><span class="jianjie-one">隨著汽車市場的不斷發展車子的保有量也不斷</span></p>
                        <p class="items-time">2019-03-20 <span class="mui-icon iconfont iconyanjing"></span><span class="liulanliang">1265</span></p>
                    </a>
                </div>
                
            </div>

vue.js:

var vm = new Vue({
                el: '#zixunClass',
                data: {
                    "active": 0
                },
                methods: {
                    vueTouch:function(a){
                        this.active=a.active;
                    }
                }
            })

移動端click事件失效

可能是你使用了better-scroll,默認它會阻止touch事件。所以在配置中需要加上click: true

例:

import BScroll from 'better-scroll'
mounted() {
    this.scroll = new BScroll(this.$refs.search, {mouseWheel: true, click: true, tap: true })
  },

以上是“vue移動端怎么解決click事件延遲,封裝tap等事件”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彰化市| 拉萨市| 潮州市| 交口县| 清徐县| 海林市| 南宫市| 延边| 临桂县| 南平市| 宝山区| 陕西省| 雷波县| 定州市| 吉首市| 绥江县| 闻喜县| 微山县| 甘泉县| 保亭| 阿拉善右旗| 伊金霍洛旗| 大邑县| 永昌县| 运城市| 宽城| 长阳| 石嘴山市| 双柏县| 林芝县| 石林| 水城县| 仙桃市| 濉溪县| 翼城县| 临夏县| 岳池县| 新乡市| 晋州市| 罗定市| 佛学|