$(function(){ /*start*/ var wow = new WOW({ boxClass: 'wow', //需要执行动画的元素的 class animateClass: 'animated', //animation.css 动画的 class offset: $(window).height() * 0.2, //距离可视区域多少开始执行动画 mobile: false, //是否在移动设备上执行动画 live: true //异步加载的内容是否有效 }); wow.init(); $(".bot-icons li").hover(function(){ //$(this).find(".show-conts").show(); $(this).addClass("on"); },function(){ //$(this).find(".show-conts").hide(); $(this).removeClass("on"); }) /*end*/ })