詳解vue中在循環(huán)中使用@mouseenter 和 @mouseleave事件閃爍問題解決方法
最近在項(xiàng)目中實(shí)現(xiàn)在循環(huán)出來(lái)的圖片中當(dāng)鼠標(biāo)移入隱藏當(dāng)前圖片顯示另一張圖片的需求時(shí)碰到了一個(gè)小問題。就是當(dāng)使用@mouseenter 和@mouseleave事件來(lái)實(shí)現(xiàn)這個(gè)需求時(shí)卻發(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)移入圖片時(shí)當(dāng)前圖片顯示查看詳情:

到此這篇關(guān)于詳解vue中在循環(huán)中使用@mouseenter 和 @mouseleave事件閃爍問題解決方法的文章就介紹到這了,更多相關(guān)vue @mouseenter @mouseleave事件閃爍內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. 使用Python webdriver圖書館搶座自動(dòng)預(yù)約的正確方法2. android H5本地緩存加載優(yōu)化的實(shí)戰(zhàn)3. 詳解如何使用Net將HTML簡(jiǎn)歷導(dǎo)出為PDF格式4. Python3 json模塊之編碼解碼方法講解5. 在線php代碼縮進(jìn)、代碼美化工具:PHP Formatter6. SpringBoot整合Redis的步驟7. PHP程序員簡(jiǎn)單的開展服務(wù)治理架構(gòu)操作詳解(二)8. 從Python的字符串中剝離所有非數(shù)字字符(“。”除外)9. PHP如何開啟Opcache功能提升程序處理效率10. ASP.NET MVC使用jQuery ui的progressbar實(shí)現(xiàn)進(jìn)度條

網(wǎng)公網(wǎng)安備