您的位置:首页 > 产品设计 > UI/UE

vue-awesome-swiper 自动轮播问题

2017-12-16 12:25 639 查看
Vue项目中用到轮播,swiper有专门针对Vue开发的版本。

通过npm安装后,引入文件。

然后写组件,写入后发现,script里面的autoplay参数不起作用了。网上找了都是autoplay:3000(时间自己定)。

有人的电脑上就可以,我的就不可以?

最终用了autoplay:true,轮播自动走了。

你们可以试试这种写法。

export default {
name: 'carrousel',
data() {
return {
// NotNextTick is a component's own property, and if notNextTick is set to true, the component will not instantiate the swiper through NextTick, which means you can get the swiper object the first time (if you need to use the get swiper object to do what Things, then this property must be true)
// notNextTick是一个组件自有属性,如果notNextTick设置为true,组件则不会通过NextTick来实例化swiper,也就意味着你可以在第一时间获取到swiper对象,假如你需要刚加载遍使用获取swiper对象来做什么事,那么这个属性一定要是true
notNextTick: true,
swiperOption: {
// swiper options 所有的配置同swiper官方api配置
autoplay: true,
speed: 400,
loop:true,
grabCursor: true,
setWrapperSize: true,
autoHeight: true,
scrollbar: '.swiper-scrollbar',
mousewheelControl: true,
observeParents: true,
//        loop:true,
// if you need use plugins in the swiper, you can config in here like this
// 如果自行设计了插件,那么插件的一些配置相关参数,也应该出现在这个对象中,如下debugger
debugger: true,
// swiper callbacks
// swiper的各种回调函数也可以出现在这个对象中,和swiper官方一样
onTransitionStart (swiper) {
console.log(swiper)
}
// more Swiper configs and callbacks...
// ...
}
}
},
// you can find current swiper instance object like this, while the notNextTick property value must be true
// 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
computed: {
swiper() {
return this.$refs.mySwiper.swiper
}
},
mounted() {
// you can use current swiper instance object to do something(swiper methods)
// 然后你就可以使用当前上下文内的swiper对象去做你想做的事了
console.log('this is current swiper instance object', this.swiper)
//    this.swiper.slideTo(3, 1000, false)
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息