- awesome-swiper has been renamed to @cycjimmy/awesome-swiper for scoped NPM package.
- awesome-swiper based on swiper 5+. (Releases | Demo)
# via npm
$ npm install @cycjimmy/awesome-swiper --save
# or via yarn
$ yarn add @cycjimmy/awesome-swiperAwesome Swiper based on Swiper 5+. Add Script of swiper in your project first
import Swiper from 'swiper';
import AwesomeSwiper from '@cycjimmy/awesome-swiper';
// OR
const Swiper = require('swiper');
const AwesomeSwiper = require('@cycjimmy/awesome-swiper');const awesomeSwiper = new AwesomeSwiper([SwiperModule]).init(context [, ...config] [, ...overlayConfig]);
// if need thumbs
const awesomeSwiper = new AwesomeSwiper([SwiperModule])
.init(context [, ...config] [, ...overlayConfig])
.addThumbs(thumbsContext [, ...thumbsConfig] [, ...thumbsExtraConfig]);- Params:
-
SwiperModule: [Object] Set custom swiper constructor. Make sure the swiper version is 5+.
-
- Return
awesomeSwiperinstance
- Params:
-
context: [String | Element] the wrapper of swiper. Height and width of wrapper must be initialized. - config: [Object]
-
speed: [Number] Duration of transition between slides (in ms). Default300. -
loop: [Boolean] Set totrueto enable loop. Defaultfalse. -
autoplay: [Number] Set autoplay delay.0means close. Default0. -
direction: [String] Set direction. Could be'horizontal'or'vertical'. Default'horizontal'. -
themeColor: [String] Set theme color for the swiper instance with a color name or a hex value. Default''is blue. -
spaceBetween: [Number] Distance between slides in px. Default0. -
slidesPerView: [Number | 'auto'] Number of slides per view. Default1. -
mousewheel: [Boolean] Set totrueto enable navigation through slides using mouse wheel. Defaultfalse. -
autoFixFullImg: [Boolean] Settrueto auto fix full images. Defaultfalse. Tip: Due to the impact of performance, not necessary not to set it. -
autoHeight: [Boolean] Set totrueand slider wrapper will adapt its height to the height of the currently active slide. Defaultfalse. -
pagination: [Object] Set pagination. If you do not want a pagination, setnull.-
color: [String] Set color for pagination with a color name or a hex value. Default''is blue. -
style: [Object] Custom pagination style. Recommended to only adjust the position here. -
dynamicBullets: [Boolean] Good to enable if you use bullets pagination with a lot of slides. So it will keep only few bullets visible at the same time. Defaultfalse. See Swiper Pagination
-
-
navigation: [Object] Set navigation. If you do not want a navigation, setnull.-
color: [String] Set color for navigation with a color name or a hex value. Default''is blue. -
size: [String | Number] Set size for navigation. -
styles: [Object] Custom style-
prev: [Object] Custom style for prevEl. -
next: [Object] Custom style for nextEl.
-
-
custom: [Object] Set custom navigation elements. Defaultnull.-
prevEl: [String | Element] Custom prev button element. -
nextEl: [String | Element] Custom next button element.
-
-
-
- overlayConfig: [Object] Use Custom swiper api to overlay config.
-
- Return
awesomeSwiperinstance
- Params:
-
thumbsContext: [String | Element] the wrapper of thumbs. Height and width of wrapper must be initialized. - thumbsConfig: [Object] You can set it follow swiper api.
-
direction: [String] Set direction. Could be'horizontal'or'vertical'. -
spaceBetween: [Number] Distance between slides in px. Default10. -
slidesPerView: [Number | 'auto'] Number of slides per view. Default'auto'.
-
- thumbsExtraConfig: [Object] Extra config for thumbs.
-
mouseOverMode: [Boolean] settrueto use mouse over mode. Defaultfalse. -
autoFixFullImg: [Boolean] Settrueto auto fix full images. Defaultfalse. Tip: Due to the impact of performance, not necessary not to set it.
-
-
- Return
awesomeSwiperinstance
- Params:
-
initialSlide: [Number] Index number of initial slide.
-
- Return
awesomeSwiperinstance
- Same as
swiper.on(event, handler) - Return
awesomeSwiperinstance
- Same as
swiper.off(event, handler) - Return
awesomeSwiperinstance
-
.swiper-full-img: Full images container. -
.swiper-full-bg: Full background container. -
.swiper-explain: Explain text container. -
.active-thumb: Active slide of thumbs.
<link href="swiper.min.css" rel="stylesheet">
<div id="basic" class="swiper swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">slide1</div>
...
</div>
</div>
<script src="swiper.min.js"></script>
<script src="awesome-swiper.umd.min.js"></script>
<script>
new AwesomeSwiper().init('#basic');
</script>or use standalone:
<div id="basic" class="swiper swiper-container">
...
</div>
<script src="awesome-swiper.standalone.umd.min.js"></script>
<script>
new AwesomeSwiper().init('#basic');
</script><script src="https://unpkg.com/npm/@cycjimmy/awesome-swiper@3/dist/awesome-swiper.umd.min.js"></script>
// standalone
<script src="https://unpkg.com/npm/@cycjimmy/awesome-swiper@3/dist/awesome-swiper.standalone.umd.min.js"></script>- chrome >= 49
- safari >= 11
- firefox >= 31
- ios >= 11
- android >= 7
- Samsung >= 5
Note: IE is not supported. If you need to be compatible with IE, please return to awesome-swiper