$(function () { var clientWidth = document.body.clientWidth; if (clientWidth <= 768) { // 鎵嬫満绔垹闄ideo slide鍙妚ideo寮圭獥 $("#video-pop-container").remove() $("#video-slide").remove(); $("#video-slide1").remove() }else{ // 鐐瑰嚮瑙嗛鏌ョ湅璇︽儏 寮瑰嚭瑙嗛寮圭獥 $('#full-video-btn').on('click', function () { $('.video-pop-container').fadeIn() }) // 缁戝畾鍏抽棴瑙嗛寮圭獥浜嬩欢 $('.video-pop-close').on('click', function () { $('.video-pop-container').fadeOut() }) } // Banner 杞挱 var bannerSwiper = createBannerSwiper(); // 婊氬姩鐩戝惉 澶勭悊瀵艰埅鏁堟灉 // $(document).on('scroll',handleScroll) // 涓撳杞挱 var expertSwiper = createExpertSwiperInstance(clientWidth); // 鍒濆鍖栧湴鍥 initMap(); // 澶氳鏂囨湰婧㈠嚭 var expertElements = $(".expert-intro"); for (var index = 0; index < expertElements.length; index++) { var el = expertElements[index]; $clamp(el, { clamp: 3 }); } }); function handleScroll() { var scrollTop = $(document).scrollTop(); var navEl = $(".nav-container"); if (scrollTop > 68) { navEl.addClass("hasBgColor"); } else { navEl.removeClass("hasBgColor"); } } // banner swiper instance function createBannerSwiper() { return new Swiper(".banner-container", { // effect: "fade", // autoplay: { // delay: 3000, // stopOnLastSlide: false, // disableOnInteraction: false, // }, autoplay: false, pagination: { el: ".swiper-pagination", clickable: true, }, navigation: { nextEl: ".banner-swiper-button-next", prevEl: ".banner-swiper-button-prev", }, }); } // 涓撳杞挱 function createExpertSwiperInstance(clientWidth) { var slidesPerView = clientWidth > 1366 ? 5 : clientWidth >= 800 ? 3 : 2; var spaceBetween = clientWidth > 1366 ? 20 : clientWidth >= 800 ? 15 : 10; return new Swiper(".expert-container", { loop: false, effect: "slide", slidesPerView: slidesPerView, centeredSlides: false, spaceBetween: spaceBetween, calculateHeight:true, observer: true, autoplay: { delay: 3000, stopOnLastSlide: false, disableOnInteraction: true, }, pagination: { el: ".swiper-pagination", dynamicBullets: true, }, watchSlidesProgress: true, watchSlidesVisibility: true, }); } function toDetails(articleId) { window.location.href='/article/details/'+articleId; } // 鍒濆鍖栧湴鍥 function initMap() { var language = languageD.language.toLowerCase() var lat = "108.818785"; var lng = "34.241859"; var map = new AMap.Map("map-container", { zoom: 14, cityName: "瑗垮畨", lang: language, // 璇█ center: [lat, lng], resizeEnable: true, // 鏄惁鐩戞帶鍦板浘瀹瑰櫒灏哄鍙樺寲 mapStyle: "amap://styles/macaron", // 涓婚 }); map.plugin("AMap.ToolBar", function () { var toolbar = new AMap.ToolBar(); map.addControl(toolbar); }); var marker = new AMap.Marker({ position: map.getCenter(), icon: "//webapi.amap.com/theme/v1.3/markers/n/mark_b.png", // 璁剧疆鏄惁鍙互鎷栨嫿 draggable: false, cursor: "move", }); marker.setMap(map); return map; }