var u = navigator.userAgent var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1 //android缁堢 var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/) //ios缁堢 $(window).on('load',function (evt) { //绉诲姩绔瘜鏂囨湰鍥剧墖澶勭悊 mobImgDeal() /* 涓嬫粦瀵艰埅*/ //glideNavigation() /**绉诲姩绔疆鎾 */ moSwipe() /*鍚搁《 */ topNavImg() /* 杞挱鍥?/ // slideshow() }) // 鍚搁《 function topNavImg() { var bdHeight = $('.header_logo').innerHeight() var navHeight = $('nav').innerHeight() var topHeight = bdHeight + navHeight + 'px' $('.top-box').css({ height: topHeight, }) } //绉诲姩绔疆鎾 function moSwipe() { $('#hp_top_lb').slide({ mainCell: '.bd ul', effect: 'fold', autoPlay: true, interTime: 7000, delayTime: 1000, }) } //杞挱鍥 function slideshow() { jQuery('.slideBox').slide({ mainCell: '.bd ul', effect: 'fold', autoPlay: true, interTime: 7000, delayTime: 1000, }) // 鍙鑼冨洿鍙樺寲-鍒锋柊椤甸潰 $(window).resize(function () { if (!isiOS) window.location.reload() }) $('#loading').hide() } //涓嬫粦瀵艰埅 function glideNavigation() { $('.con_header_nav_box ul').hide() //鎵撳紑椤甸潰闅愯棌涓嬫媺鍒楄〃 $('.header-title-box').hover( //榧犳爣婊戣繃涓嬫媺鍒楄〃鑷韩涔熻鏄剧ず锛岄槻姝㈡棤娉曠偣鍑讳笅鎷夊垪琛 function () { $(this).children('ul').show() }, function () { $(this).children('ul').hide() } ) $('.con_header_nav_box ul').hover( //榧犳爣婊戣繃涓嬫媺鍒楄〃鑷韩涔熻鏄剧ず锛岄槻姝㈡棤娉曠偣鍑讳笅鎷夊垪琛 function () { $(this).show() }, function () { $(this).hide() } ) } //鍒楄〃瀵艰埅 function listNavigation(title, content, contentClass, moresDom) { $(title).eq(0).addClass('active').siblings().removeClass('active') $(content).eq(0).show().siblings(contentClass).hide() $(moresDom).eq(0).show().siblings('.more').hide() $(title).mouseenter(function () { $(this).addClass('active').siblings().removeClass('active') $(content).eq($(this).index()).show().siblings(contentClass).hide() $(moresDom).eq($(this).index()).show().siblings('.more').hide() }) $(title).click(function () { $(this).addClass('active').siblings().removeClass('active') $(content).eq($(this).index()).show().siblings(contentClass).hide() $(moresDom).eq($(this).index()).show().siblings('.more').hide() }) } //绉诲姩绔瘜鏂囨湰鍥剧墖澶勭悊 function mobImgDeal() { var width = $(window).width() if (width < 992) { $('.articel img').css('max-width', width) $('.articel img').css('width', '100%') $('.articel img').css('height', 'auto') } } // 绉诲姩绔幓鎺夐摼鎺ヨ烦杞 function hrefAlert() { if (/Mobi|Android|iPhone/i.test(navigator.userAgent)) { $('.alert-center-title').attr('href', 'javascript:;') } } window.onbeforeunload = function () { if (!isiOS) { // $('#loading').show() } } // 鏄惁鏄Щ鍔ㄧ function ismobile() { let flag = navigator.userAgent.match( /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i ) return flag != null ? 'Y' : null }