39 lines
855 B
JavaScript
39 lines
855 B
JavaScript
$(function () {
|
|
jQuery(".slides-img a").SwitchFade({
|
|
text: '.slides-txt a',
|
|
prev: '.slides-left',
|
|
next: '.slides-right',
|
|
num: '.slides-num span',
|
|
className: 'cur',
|
|
playTime: 4000,
|
|
lendy: '.x',
|
|
indy: '.x',
|
|
// autoPlay:false //是否自动轮播
|
|
});
|
|
|
|
$(".index-sw1").autoPlayTabs({
|
|
tabHead: ".index-card-nav li",
|
|
tabCont: ".index-card-body .index-item",
|
|
cur: "cur",
|
|
autoPlay: true, // Enable auto-play
|
|
interval: 5000
|
|
});
|
|
|
|
$(".index-sw21").autoPlayTabs({
|
|
tabHead: ".index-card-nav li",
|
|
tabCont: ".index-card-body .index-item",
|
|
cur: "cur",
|
|
autoPlay: false, // Enable auto-play
|
|
interval: 5000
|
|
});
|
|
|
|
var swiper = new Swiper(".mySwiper", {
|
|
slidesPerView: 3,
|
|
spaceBetween: 30,
|
|
pagination: {
|
|
el: ".swiper-pagination",
|
|
clickable: true,
|
|
},
|
|
});
|
|
|
|
}) |