window.onload = function () {
var myswiper = new swiper(".party-container", {
// loop:true,
speed: 1000,
autoplay: 3000,
pagination: ".party-container .swiper-pagination",
paginationclickable: true,
});
if($('.party-container .swiper-slide').length == 1){
myswiper.stopautoplay();
}
// $(".page-summarize-box .right-box .text-item .item").hover(
// function(e){
// var index =e.currenttarget.dataset.index;
// myswiper.slideto(index, 1200, false);
// },
// function(){
// myswiper.startautoplay();
// }
// )
// 分页初始化
layui.use(function () {
var laypage = layui.laypage;
// 自定义文本
laypage.render({
elem: "demo-laypage-text",
curr: 1, // 当前页码
count: 100, // 总条数
limit: 6, // 每页显示条数
groups: 4,
prev: '',
next: '',
});
});
};