0.5.6 • Published 3 years ago

zx-swiper v0.5.6

Weekly downloads
35
License
-
Repository
github
Last release
3 years ago

zx-Swiper(作者:初志鑫1204505056@qq.com)

注意事项

只能用于Vue CLI项目

鸣谢

努力了这么久,终于成了一名合格的代码搬运工,我只是有幸站在了巨人的肩膀上,感谢自己,感谢巨人...

实现功能

1.实现swiper常用功能

商务合作与赞赏

邮箱  1204505056@qq.com
QQ 1204505056

如果你觉得这个项目帮助到了你,你可以赞赏一下作者:

image

安装方法

cnpm i -S zx-Swiper

keel 组件 main.js 全局引入

import Vue from 'vue'
import ZxSwiper from '../components/export.js'
Vue.component('byui-Swiper', ZxSwiper)

template 完整示例

<template>
	<div id="app">
		<byui-Swiper ref="Swiper" :slidesPerView="10">
			<div v-for="(item, index) in num" :key="index" class="Swiper-slide animated zoomInLeft">Slide{{ index }}</div>
		</byui-Swiper>
	</div>
</template>

<script>
export default {
	name: 'App',
	data() {
		return { num: 1 };
	},
	mounted() {
		setInterval(() => {
			this.num++;
		}, 1000);
		setInterval(() => {
			this.$refs.Swiper.update();
			this.$refs.Swiper.slideNext();
		}, 500);
	}
};
</script>

<style>
body {
	margin: 0;
	padding: 0;
}
#app {
	font-family: 'Avenir', Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
	color: #2c3e50;
	padding: 20px;
}
</style>
0.5.6

3 years ago

0.5.4

4 years ago

0.5.5

4 years ago

0.5.2

4 years ago

0.5.1

4 years ago

0.5.0

4 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago