$(function () { var speed = 600; var $sliderWrap = $(".swiper-wrapper"); paginationArray = []; $sliderWrap.find(".swiper-slide").each(function(idx,target){ var dataTitle = $(target).data("title"); console.log(dataTitle); paginationArray.push(dataTitle); }); // 棣栭〉banner杞挱鍥 if ($('.home-banner.swiper-container').length) { var mySwiper = new Swiper('.home-banner.swiper-container', { // direction: 'horizontal', effect: 'fade', loop: true, // 寰幆妯″紡閫夐」 simulateTouch: false, autoplay: true, touchRatio: 0, speed: speed, // 鍒嗛〉鍣 pagination: { el: '.swiper-pagination', }, // 杩涘悗閫€鎸夐挳 navigation: { nextEl: '.swiper-home-next', prevEl: '.swiper-home-prev', }, // 婊氬姩鏉 scrollbar: { el: '.swiper-scrollbar', }, on:{ slideChangeTransitionStart: function(){ scaleDownBgImage(); }, } }) } function scaleDownBgImage(){ var $sliderSec = $(".home-banner"); var $sliderWrap = $sliderSec.find(".swiper-wrapper"); gsap.fromTo($sliderWrap.find(".swiper-slide-active").find(".bg"), speed/100, { scale:1.2, rotation: 0.1 }, { scale:1, rotation: 0.1, ease:Power2.inOut, }); }; // 鍚堜綔浼欎即 if ($('.frm-swiper').length) { var num = $(document).width()<=768?2:6; var mySwiper2 = new Swiper('.frm-swiper', { slidesPerView: num, spaceBetween: 30, // pagination: { // el: ".swiper-pagination", // clickable: true, // }, // 杩涘悗閫€鎸夐挳 navigation: { nextEl: '.swiper-outside-next', prevEl: '.swiper-outside-prev', }, }) } // 婊氬姩鏀瑰彉瀵艰埅鏍 $(window).on('scroll', function () { function fixedHeader() { var headerTopBar = 43; var headerOneTopSpace = 0; var headerOneELement = $('.header-one .site-navigation'); var headerTwoELement = $('.header-two .site-navigation'); if ($(window).scrollTop() > headerTopBar + headerOneTopSpace) { $(headerOneELement).addClass('navbar-fixed'); $('.header-one').css('margin-bottom', headerOneELement.outerHeight()); } else { $(headerOneELement).removeClass('navbar-fixed'); $('.header-one').css('margin-bottom', 0); } if ($(window).scrollTop() > headerTopBar) { $(headerTwoELement).addClass('navbar-fixed'); $('.header-two').css('margin-bottom', headerTwoELement.outerHeight()); } else { $(headerTwoELement).removeClass('navbar-fixed'); $('.header-two').css('margin-bottom', 0); } } fixedHeader(); function scrollTopBtn() { var scrollToTop = $('#back-to-top'), scroll = $(window).scrollTop(); if (scroll >= 50) { scrollToTop.fadeIn(); } else { scrollToTop.fadeOut(); } } scrollTopBtn(); }); if ($(window).scrollTop()>100) { $('.header-two .site-navigation').addClass('navbar-fixed'); $('.header-two').css('margin-bottom', $('.header-two .site-navigation').outerHeight()); } // 婊氬姩鍒伴《閮 function backToTop() { $('#back-to-top').on('click', function () { $('#back-to-top').tooltip('hide'); $('body,html').animate({ scrollTop: 0 }, 800); return false; }); } backToTop(); // 鍥剧墖鏀惧ぇ if ($('[data-toggle="photos"]').length>0) { $('[data-toggle="photos"]').click(function () { var data = []; $('#'+$(this).data('id')).find('img').each(function(index){ var othis = $(this); othis.attr('layer-index', index); data.push({ alt: othis.attr('alt'), pid: othis.attr('layer-pid'), src: othis.attr('layer-src') || othis.attr('src'), thumb: othis.attr('src') }); }); if (data) { layer.photos({ photos: { start: $(this).attr('layer-index'), data: data }, }, true); } }) } // 瑙嗛鎾斁 if ($('[data-toggle="h5video"]').length>0) { $('[data-toggle="h5video"]').click(function () { layer.open({ type: 1 ,title: false ,closeBtn: true ,area: $('body').width()<768?'95%':'600px' ,id: 'home-id-css' ,btnAlign: 'c' ,moveType: 1 ,resize: false ,content: '' ,success: function(layero){} }); }) } // 閭銆佹墜鏈哄彿寮瑰嚭 $('.social').click(function (e) { layer.open({ type: 1 ,title: false ,closeBtn: true ,id: 'home-id-css' ,btnAlign: 'c' ,moveType: 1 ,resize: false ,content: '
'+$(this).data('url')+'
' ,success: function(layero){} }); }) // 鍥剧墖寮瑰嚭 $('.social-img').click(function (e) { layer.open({ type: 1 ,title: false ,closeBtn: true ,id: 'home-id-css' ,btnAlign: 'c' ,moveType: 1 ,resize: false ,content: '
' ,success: function(layero){} }); }) if ($(document).width()<1000) { $('.navbar-collapse>ul>li.dropdown').children('.dropdown-toggle').attr('data-toggle','dropdown'); // 鎵嬫満绔粯璁ゅ睍寮€鍏ㄩ儴瀛愭爮鐩 $('.navbar-collapse>ul>li.dropdown').click(function (e) { $(this).find('.dropdown-submenu .dropdown-menu').addClass('show') }); } })