$(".topicList02 .flexslider").flexslider({ animation: 'slide', prevText: "", //String: 涓婁竴椤圭殑鏂囧瓧 nextText: "", //String: 涓嬩竴椤圭殑鏂囧瓧 animationLoop: true, slideshowSpeed: 4000, //灞曠ず鏃堕棿闂撮殧ms animationSpeed: 600, //婊氬姩鏃堕棿ms pauseOnHover: true, //榧犳爣婊戝悜婊氬姩鍐呭鏃讹紝鏄惁鏆傚仠婊氬姩 touch: true //鏄惁鏀寔瑙﹀睆婊戝姩 // slideshow:false }); $('.flex-direction-nav a').each(function(e){ var $this =$(this) $this.addClass('iconfont'); //$this.text(''); if($this.hasClass('flex-prev')){ $(this).addClass('icon-arrow') }else if($this.hasClass('flex-next')){ $(this).addClass('icon-arrow1') } }) articleShare()//鏂囩珷椤靛垎浜 asideFix()//鏂囩珷椤典晶杈规爮鍥哄畾 //鑾峰彇鏂囩珷椤电殑鍥剧墖鍘绘帀棣栬缂╄繘 $('.article').find('img').each(function(){ $(this).parent().css('text-indent',0) }) $('.article').find('video').each(function(){ var videoWidth = $(this).width() var videoHeight = $(this).height(); var videoPic = $(this).attr('poster') $(this).parent('p').css('text-indent','0') $(this).wrap('
'); $(this).parent('div').css({ width:videoWidth, height:videoHeight, margin:'0 auto' }) $(this).css('display','none'); $(this).parent('div').css({ backgroundImage:'url('+videoPic+')', }) $(this).parent('div').addClass('articleVideo'); $(this).parent('div').append('') $(this).next('.videoPlay').click(function(){ $(this).prev('video').fadeIn(300).get(0).play(); $(this).fadeOut(100) }) })