鼠标悬浮div,div上移动画
2020-12-20 本文已影响0人
泪滴在琴上
$(".jingdian>div").each(function(index){
$(this).on("mouseenter",function(){
$(this).animate({top:"-20px"});
})
$(this).on("mouseleave",function(){
$(this).animate({top:"0px"});
})
})