File: /www/wwwroot/wood-lk.cn/wp-content/themes/mlk/assets/js/index.js
var swiper = new Swiper('.index-banner .swiper-container', {
autoplay: {
delay: 5000,
stopOnLastSlide: false,
disableOnInteraction: false,
},
navigation: {
nextEl: '.index-banner .swiper-button-next',
prevEl: '.index-banner .swiper-button-prev',
},
pagination: {
el: '.index-banner .swiper-pagination',
clickable: true,
},
});
//
// var oService = new Swiper('.index-service-swiper .swiper-container', {
// autoplay: {
// delay: 5000,
// stopOnLastSlide: false,
// disableOnInteraction: false,
// },
// navigation: {
// nextEl: '.index-service .swiper-button-next',
// prevEl: '.index-service .swiper-button-prev',
// },
// slidesPerView: 3.5,
// spaceBetween: 20,
// breakpoints: {
// 640: {
// slidesPerView: 1.5,
// },
// 768: {
// slidesPerView: 2,
// },
// 1024: {
// slidesPerView: 2,
// },1230: {
// slidesPerView: 2.5,
// }
// },
// pagination: {
// el: '.index-service-swiper .swiper-pagination',
// clickable: true,
// },
// });
function indexTabs(oTitle, oItem, oShow) {
$(oTitle).eq(0).addClass(oShow);
$(oItem).eq(0).show();
$('.index-case-bg').css("background-image",'url('+$(oItem).eq(0).find('img').attr('src')+')');
$(oTitle).click(function() {
$(oTitle).eq($(this).index()).addClass(oShow).siblings().removeClass(oShow);
$(oItem).hide().eq($(this).index()).show();
let src = $(oItem+">.index-case-item").eq($(this).index()).find('img').attr('src');
if(src){
$(".index-case-bg").css("background-image",'url('+src+')');
}
});
}
indexTabs(".index-news-cate li", ".index-news-box .index-news-item", "on");
// wow
wow = new WOW({
boxClass: 'wow', // default
animateClass: 'animated', // default
offset: 50, // default
mobile: true, // default
live: true // default
})
wow.init();