詳解vue中在循環(huán)中使用@mouseenter 和 @mouseleave事件閃爍問題解決方法
最近在項目中實現(xiàn)在循環(huán)出來的圖片中當鼠標移入隱藏當前圖片顯示另一張圖片的需求時碰到了一個小問題。就是當使用@mouseenter 和@mouseleave事件來實現(xiàn)這個需求時卻發(fā)現(xiàn)鼠標移入后圖片出現(xiàn)閃爍現(xiàn)象。
重點:事件寫到父元素上才行!!! 0.0
下面寫下我的實現(xiàn)方法和實現(xiàn)效果
樣式代碼:
<div v-for='(item,index) in exampleUrl' :key = index @mouseenter ='enterFun(index)' @mouseleave ='leaveFun(index)' > <img :src = item.url v-show='show || n != index' > <div v-show='!show && n == index' >查看詳情</div></div>
其他代碼:
export default {data () { return { n: 0, show:true, }} ,methods: {enterFun(index){ console.log(’鼠標移入’); this.show = false; this.n = index;},leaveFun(index){ console.log(’鼠標離開’); this.show = true; this.n = index;},} }
最終實現(xiàn)效果如圖 當鼠標移入圖片時當前圖片顯示查看詳情:
到此這篇關(guān)于詳解vue中在循環(huán)中使用@mouseenter 和 @mouseleave事件閃爍問題解決方法的文章就介紹到這了,更多相關(guān)vue @mouseenter @mouseleave事件閃爍內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. php使用正則驗證密碼字段的復雜強度原理詳細講解 原創(chuàng)2. 基于javaweb+jsp實現(xiàn)企業(yè)車輛管理系統(tǒng)3. Jsp servlet驗證碼工具類分享4. ASP將數(shù)字轉(zhuǎn)中文數(shù)字(大寫金額)的函數(shù)5. Jsp+Servlet實現(xiàn)文件上傳下載 文件列表展示(二)6. XML在語音合成中的應用7. jscript與vbscript 操作XML元素屬性的代碼8. asp.net core 認證和授權(quán)實例詳解9. 基于PHP做個圖片防盜鏈10. HTML5實戰(zhàn)與剖析之觸摸事件(touchstart、touchmove和touchend)
