var w = $("body").width(); var h = $(window).height(); var isIe8 = false; var browser=navigator.appName var b_version=navigator.appVersion var version=b_version.split(";"); var trim_Version=version[1].replace(/[ ]/g,""); var award = null; var team = null; if(browser=="Microsoft Internet Explorer" && trim_Version=="MSIE8.0"){ isIe8 = true; } window.onresize = function(){ w = $("body").width(); init(); }; function init(){ setIE8(); $(".video-view").unbind("click").bind("click",function(){ var url = $(this).data("v"); var vhtml = ''; if(url=="")return; $(".h-video-content").html(vhtml); $(".h-video-box").removeClass("hide"); $(".h-video-box").unbind("click").bind("click",function(){ $(".h-video-box").addClass("hide"); $(".h-video-content").html(""); }) $(".btn-close").unbind("click").bind("click",function(){ $(".h-video-box").addClass("hide"); $(".h-video-content").html(""); }) $(".h-video").unbind("click").bind("click",function(e){ e.stopPropagation();//阻止点击事件向上冒泡 }) }) if(award==null){ award = new Swiper('.h-award-container', { loop : true, autoplay:true, spaceBetween : 20, /*effect : 'coverflow', slidesPerView: 2, centeredSlides: true, coverflowEffect: { rotate: 0, stretch: -2, depth: 0, modifier: 0, slideShadows : true },*/ pagination: { el: '.swiper-pagination-award', clickable: true, } }); } if(team==null){ team = new Swiper('.h-team-fc-container', { loop : true, autoplay:true, spaceBetween : 20, pagination: { el: '.swiper-pagination-team-fc', clickable: true, } }); } //视频自动播放取消静音 /*$("body").unbind("click").bind("click",function() { document.getElementById("aolinpa").muted = false; })*/ } function setIE8(){ if(w>1024){ $(".am-show-lg-only").show(); $(".am-hide-lg-only").hide(); }else{ $(".am-show-lg-only").hide(); $(".am-hide-lg-only").show(); } } init(); //设置演讲嘉宾轮播图高度 function setSwiperJbHeight(){ var w = 0,h = 0; var obj = $(".h-jb-swiper"); w = obj.find(".swiper-slide").eq(0).width(); h = w*529/317; console.log("h:"+h) obj.css({"height":h}); obj.find(".swiper-slide").css({"height":h}); } //弹框关闭按钮 $(".tk-btn-close").unbind("click").bind("click",function(){ $(".tk-box").addClass("hide"); }); //移动版导航菜单按钮 $(".btn-menu").unbind("click").bind("click",function(){ $(".header_right_fixed").removeClass("hide"); }); $(".header_right_fixed").unbind("click").bind("click",function(){ $(".header_right_fixed").addClass("hide"); }); $(".header_right_fixed ul").unbind("click").bind("click",function(e){ e.stopPropagation(); }); //Top $("#go_top").click(function() { $("body,html").animate({scrollTop:0},500); }); //滚动 $(window).scroll(function(){ //置顶 if ($(window).scrollTop()>100){ $("#go_top").fadeIn(500); }else{ $("#go_top").fadeOut(500); } });