press-swiper
Version:
适配多端的高自定义轮播组件,多种3D效果。全面对标swiperjs。
13 lines (11 loc) • 322 B
JavaScript
export default function onClick(e) {
const swiper = this;
if (!swiper.enabled) return;
if (!swiper.allowClick) {
if (swiper.params.preventClicks) e.preventDefault();
if (swiper.params.preventClicksPropagation && swiper.animating) {
e.stopPropagation();
e.stopImmediatePropagation();
}
}
}