;(function () { 'use strict'; var slidermain = function() { $('.flexslider').flexslider({ animation: "fade", slideshowspeed: 5000, //展示时间间隔ms animationspeed: 1000, //滚动时间ms touch: true, //是否支持触屏滑动 directionnav: true }); }; $(function(){ slidermain(); /*侧栏导航*/ $(".side ul li").hover(function(){ $(this).find(".sidebox").stop().animate({"width":"160px"},100).css({"opacity":"1","filter":"alpha(opacity=100)","background":"#ff0014"}) },function(){ $(this).find(".sidebox").stop().animate({"width":"54px"},100).css({"opacity":"1","filter":"alpha(opacity=100)","background":"#ff0014"}) }); /*友情链接*/ $(".friend_link").hover(function(){ $(this).parent().find("ul").show(); },function(){ $(this).parent().find("ul").hide(); }) }); }()); //回到顶部 function gotop(){ $('html,body').animate({'scrolltop':0},500); }