Skip to content

Instantly share code, notes, and snippets.

@mhige
Created September 25, 2018 09:04
Show Gist options
  • Save mhige/5f6b0b67996d7c3cd611c45323e99e62 to your computer and use it in GitHub Desktop.
Save mhige/5f6b0b67996d7c3cd611c45323e99e62 to your computer and use it in GitHub Desktop.
Swiperを動かす
//swiper.js
//jQuery使ってます..
$(document).ready(function () {
// swiperをイニシャライズ
var mySwiper = new Swiper ('.swiper-container', {
// オプションのパラメーターを指定
direction: 'horizontal',
effect: "flip",
loop: true,
spaceBetween: 30,
centeredSlides: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
pagination: {
el: '.swiper-pagination',
dynamicBullets: true,
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment