You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
399 B
15 lines
399 B
var swiper = new Swiper(".swiper-container", {
|
|
direction: "vertical",
|
|
slidesPerView: 1,
|
|
spaceBetween: 0,
|
|
mousewheel: true,
|
|
pagination: {
|
|
el: ".swiper-pagination",
|
|
clickable: true,
|
|
},
|
|
});
|
|
|
|
var indexBlock6Img1 = document.getElementsByClassName("indexBlock6Img1");
|
|
for (var i = 0; i < indexBlock6Img1.length; i++) {
|
|
if (i >= 12) indexBlock6Img1[i].style.borderBottom = "unset";
|
|
}
|