$(function() { //头部轮播图 $(".banner .flexslider").flexslider({ animation:'fade', slideshowSpeed: 6000, //展示时间间隔ms animationSpeed: 1000, //滚动时间ms touch: true //是否支持触屏滑动 }); $(".subbanner .flexslider").flexslider({ animation:'fade', slideshowSpeed: 6000, //展示时间间隔ms animationSpeed: 1000, //滚动时间ms touch: true //是否支持触屏滑动 }); var windowWidth = $(window).width(); //所有轮播图图标 $('.flex-direction-nav').each(function(e){ $(this).find('a').each(function(){ var $this =$(this) $this.addClass('iconfont'); $this.text(''); if($this.hasClass('flex-prev')){ $(this).addClass('iconjiantouzuo') }else if($this.hasClass('flex-next')){ $(this).addClass('iconjiantouyou') } }) }) //控制头部大图图标 $('.banner .flex-control-paging a').each(function(e){ var $this =$(this) $this.addClass('iconfont'); $this.text(''); $(this).addClass('iconicon') }) });