在我的画廊中,Div 通过循环生成。在那里,我想为特定(单个)Div 提供悬停效果。在我的代码中,当我将特定的 div 效果悬停在整个 div 中时。
我的代码
.spanstyle{opacity:1;}
while (loop){
<div class="waz">
<span class="spanstyle"></span>
</div>
}
$(".waz .spanstyle").each(function(i, val) {
$(this).mouseenter(function() {
$(this).stop().animate({ opacity: 1 }, 300);
})
$(this).mouseleave(function() {
$(this).stop().animate({ opacity: .3 }, 100);
})
});
有关更多详细信息,您可以查看项目: 项目