var d = window.location.href.split('/'); var d2 = d[d.length - 1]; var d1 = d.splice(d.length - 1, 1); if (!os.pc && !os.ipad) location.replace(d.join('/') + '/mobile/' + d2); var leaveTimer = null; $('#nav-ul').find('li').mouseenter(function () { var _idx = $(this).index(); clearTimeout(leaveTimer); $(this).siblings().removeClass('active').end().addClass('active'); $('.js-nav-list').hide(0).eq(_idx).show(0); $('#nav-wrapper').fadeIn(); $('#search-box').hide(); $('#show-search').removeClass('close'); }); $('.js-nav-list ul').find('li').mouseenter(function () { var _idx = $(this).index(); $(this).parent('ul').siblings('.img').find('a').hide(0); $(this).parent('ul').siblings('.img').find('a').eq(_idx).show(0); console.log('_idx', _idx); }) $('#nav-wrapper').mouseenter(function () { clearTimeout(leaveTimer) }) $('#nav-wrapper').mouseleave(function () { leaveTimer = setTimeout(function () { $('#nav-wrapper').fadeOut(function () { $('#nav-ul').find('li').removeClass('active'); }); }, 300) }); $('#nav-wrapper').find('li').mouseenter(function () { $(this).siblings().removeClass('active').end().addClass('active'); }); $(document).keyup(function (event) { if (event.keyCode == 13) { if ($('#search-input').is(':focus')) { $('#search-btn').trigger('click'); } } }); $("#search-btn").on('click', function () { var searchKey = $('#search-input').val() searchKey=searchKey.replace(/[^\a-\z\A-\Z0-9\u4E00-\u9FA5\@\.]/g,''); if (searchKey === '') alert('璇峰~鍐欐悳绱㈠叧閿瓧'); else location.href = 'search.html?key=' + searchKey }) $('#show-search').on('click', function () { $('#nav-wrapper').fadeOut(); if($(this).hasClass('close')) { $('#search-box').fadeOut(); $('#show-search').removeClass('close'); }else{ $('#search-box').fadeIn(); $('#show-search').addClass('close'); } }) // foot.js $('#kefu').hover(function () { $('#nav-phone').fadeIn(); }, function () { $('#nav-phone').fadeOut(); }) var navTimer = null; $('.js-guanzhu').hover(function () { $('.js-icon-list').fadeIn(); }, function () { navTimer = setTimeout(function () { $('.js-icon-list').fadeOut(); }, 1500) }) $('.js-icon-list').hover(function () { clearTimeout(navTimer); }, function () { $('.js-icon-list').fadeOut(); }) $('.js-wx').hover(function () { $('#nav-qr').fadeIn(); }, function () { $('#nav-qr').fadeOut(); }) $('#scroll-wrapper').scroll(function () { if ($('#scroll-wrapper').scrollTop() > 100) { $('#to-top').fadeIn(); } else { $('#to-top').fadeOut(); } }) $('#to-top').on('click', function () { $('#scroll-wrapper').animate({ scrollTop: 0 }, 800); }) //PC鍏虫敞鎴戜滑 start $('.gzwm_list li').hover(function() { $('#nav-wrapper').fadeOut(); $(this).find('.qrcode').fadeIn() }, function() { $(this).find('.qrcode').fadeOut() }) var newsScrollSwiper = new Swiper('.news-scroll-swiper', { direction: 'vertical', loop: true, autoplay: 10000, observer: true, observeParents: false });