-
暮色呼如
这个问题的我感觉你最好自己按F12去看一下人的代码怎么实现的,学会如何查看别人的代码也是一个很重要的技能 $('.gsPartner li span').hover(function(){ $(this).addClass('animated fadeIn') },function(){ $('.gsPartner li span').removeClass('animated fadeIn') })以上代码是我用F12在目标网站查看到的代码,人的逻辑就是鼠标划过时,添加animated fadeIn这两个class,鼠标离开时,再删除这两个class,动画效果是用的animate.min.css库里面的fadeIn效果
-
POPMUISE
css3 fade渐进吧,还是觉得这种展示方式的设计很不好
-
慕森王
css3中的渐变实现,或是用jquery中的toggle()实现就可以的
-
月关宝盒
${functon(){ $("*").hover(function(){ function () { $(this).addClass("你css的class名称"); }, function () { $(this).removeClass("你css的class名称"); }});}}