成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁技術(shù)文章
文章詳情頁

詳解vue中在循環(huán)中使用@mouseenter 和 @mouseleave事件閃爍問題解決方法

瀏覽:121日期:2023-01-28 10:23:36

最近在項目中實(shí)現(xiàn)在循環(huán)出來的圖片中當(dāng)鼠標(biāo)移入隱藏當(dāng)前圖片顯示另一張圖片的需求時碰到了一個小問題。就是當(dāng)使用@mouseenter 和@mouseleave事件來實(shí)現(xiàn)這個需求時卻發(fā)現(xiàn)鼠標(biāo)移入后圖片出現(xiàn)閃爍現(xiàn)象。

重點(diǎn):事件寫到父元素上才行?。。?0.0

下面寫下我的實(shí)現(xiàn)方法和實(shí)現(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(’鼠標(biāo)移入’); this.show = false; this.n = index;},leaveFun(index){ console.log(’鼠標(biāo)離開’); this.show = true; this.n = index;},} }

最終實(shí)現(xiàn)效果如圖 當(dāng)鼠標(biāo)移入圖片時當(dāng)前圖片顯示查看詳情:

詳解vue中在循環(huán)中使用@mouseenter 和 @mouseleave事件閃爍問題解決方法

到此這篇關(guān)于詳解vue中在循環(huán)中使用@mouseenter 和 @mouseleave事件閃爍問題解決方法的文章就介紹到這了,更多相關(guān)vue @mouseenter @mouseleave事件閃爍內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Vue
相關(guān)文章: