-
swiper.js - 페이징 커스텀퍼블리싱/javascript&jQuery 2024. 1. 25. 06:11
swiper.js는 페이징 커스텀이 가능하다.
아래와 같이 작업
* html
<div class="swiper myswiper">
<div class="swiper-wrapper">
<div class="swiper-slide">1</div>
<div class="swiper-slide">2</div>
<div class="swiper-slide">3</div>
</div>
<div class="swiper-pagination"></div>
</div>* script
<script>
var bullet = [ ['bullet01', 'text1'],
['bullet02', 'text2'],
['bullet03', 'text3']];
var swiper = new Swiper(".myswiper", {
pagination: {
el: ".swiper-pagination",
renderBullet: function (index, className) {
return '<div class="' + className + ' ' + bullet[index][0] + '"><span>' + bullet[index][1] + '</span></div>';
}
},
loop: true,
effect: 'fade',
allowTouchMove: false,
autoplay: {
delay: 5000,
},
});
</script>'퍼블리싱 > javascript&jQuery' 카테고리의 다른 글
웹 제작 유용한 무료 슬라이더 (1) 2025.01.06 모달 팝업 swiper, slick 슬라이더 (0) 2019.03.11 script pc 모바일 분기 (0) 2018.05.10 오픈소스 오디오 플레이어 jPlayer (1) 2018.02.14 JS 커스텀 스크롤바 플러그인 (0) 2018.02.09