欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時(shí)間:2020年04月07日 11:29:06   作者:錢(qián)不多啊  
這篇文章主要介紹了詳解vue中在循環(huán)中使用@mouseenter 和 @mouseleave事件閃爍問(wèn)題解決方法,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧

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

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

下面寫(xiě)下我的實(shí)現(xiàn)方法和實(shí)現(xiàn)效果

樣式代碼:

<div class="imgs" 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)離開(kāi)');
		  this.show = true;
		  this.n = index;
		},
	}    
}

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

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

相關(guān)文章

最新評(píng)論