$(function(){ //微博、微信下拉 (function( qrcode ){ if ( !qrcode.length ) return; var show = { "display" : "block", "top" : 12, "opacity" : 1 }; var hide = { "display" : "none", "top" : 0, "opacity" : 0 }; qrcode.on("mouseenter", ".qrcodeli", function(){ var self = $(this), otherlink = qrcode.find(".qrcodeli").not( this ), siblings = self.find(".qrcodebox"), otherbox = qrcode.find(".qrcodebox").not( siblings ); if ( self.hasclass("active") ) return; otherlink.removeclass("active"); tweenlite.to( otherbox, 0.3, hide); self.addclass("active"); tweenlite.to( siblings, 0.3, show); return false; }).on("mouseleave", ".qrcodeli", function(){ $(this).removeclass("active"); tweenlite.to( $(this).find(".qrcodebox"), 0.3, hide); }); })( $("#qrcode") ); //nav $("#nav .mli").hover(function() { var this=$(this) if (this.find('.mlink').hasclass('curr')){ this.find('.mlink').addclass('hover'); return; } this.find('.mlink').addclass('curr') }, function() { var this=$(this) if (this.find('.mlink').hasclass('hover')) return; this.find('.mlink').removeclass('curr') }); /*nav*/ $("#nav .mli").hover(function(){ $(this).find("ul").show(); },function(){ $(this).find("ul").hide(); }) $(function(){ //banner $("#banner").slide({ titcell:".hd", maincell:".bd ul", autopage:"", autoplay:true }); }) }) //大屏宽尺寸 宽/高=4/3 $(function(){ $(".showart-list-pic43 ul li .rsp").hide(); $(".showart-list-pic43 ul li").hover(function(){ $(this).find(".rsp").stop().fadeto(500,0.5) $(this).find(".text").stop().animate({left:'0'}, {duration: 500}) }, function(){ $(this).find(".rsp").stop().fadeto(500,0) $(this).find(".text").stop().animate({left:'300'}, {duration: "fast"}) $(this).find(".text").animate({left:'-300'}, {duration: 0}) }); }); //大屏宽尺寸 宽/高=3/4 $(function(){ $(".showart-list-pic34 ul li .rsp").hide(); $(".showart-list-pic34 ul li").hover(function(){ $(this).find(".rsp").stop().fadeto(500,0.5) $(this).find(".text").stop().animate({left:'0'}, {duration: 500}) }, function(){ $(this).find(".rsp").stop().fadeto(500,0) $(this).find(".text").stop().animate({left:'300'}, {duration: "fast"}) $(this).find(".text").animate({left:'-300'}, {duration: 0}) }); }); //视频展现形式 col=4 $(function(){ $(".showart-list-video ul li .sprsp").hide(); $(".showart-list-video ul li").hover(function(){ $(this).find(".sprsp").stop().fadeto(500,0.5) $(this).find(".sptext").stop().animate({top:'60'}, {duration: 500}) }, function(){ $(this).find(".sprsp").stop().fadeto(500,0) $(this).find(".sptext").stop().animate({top:'-90'}, {duration: "fast"}) $(this).find(".sptext").animate({top:'-90'}, {duration: 0}) }); }); //视频展现形式 col=3 $(function(){ $(".showsp ul li .srsp").hide(); $(".showsp ul li").hover(function(){ $(this).find(".srsp").stop().fadeto(500,0.5) $(this).find(".stext").stop().animate({top:'92'}, {duration: 500}) }, function(){ $(this).find(".srsp").stop().fadeto(500,0) $(this).find(".stext").stop().animate({top:'-92'}, {duration: "fast"}) $(this).find(".stext").animate({top:'-92'}, {duration: 0}) }); }); //资讯类文章列表样式 简图+标题+时间 $(function(){ $(".artnewslist ul li .nvsrsp").hide(); $(".artnewslist ul li").hover(function(){ $(this).find(".nvsrsp").stop().fadeto(500,0.5) $(this).find(".nvstext").stop().animate({top:'60'}, {duration: 500}) }, function(){ $(this).find(".nvsrsp").stop().fadeto(500,0) $(this).find(".nvstext").stop().animate({top:'-90'}, {duration: "fast"}) $(this).find(".nvstext").animate({top:'-90'}, {duration: 0}) }); });