用vue2在宽400px高600px的div里面用v-for渲染list: [ { name: 'csw1', event: 'hhhhh' }, { name: 'csw2', event: 'hhhhh' }, { name: 'csw3', event: 'hhhhh' }, { name: 'csw4', event: 'hhhhh' }, { name: 'csw5', event: 'hhhhh' }, { name: 'csw6', event: 'hhhhh' } ],每条数据放在宽400px高200px的盒子里,放的顺序是从上到下,且将溢出的部分隐藏,然后做一个从下往上的轮播,速度是每2秒500px,当list中数据轮播完之后,轮播停止,在轮播停止后过了10s往list当中push十条新数据过后继续轮播
时间: 2023-04-10 19:02:43 浏览: 74
可以使用以下代码实现:
```html
<template>
<div class="container" style="width: 400px; height: 600px; overflow: hidden;">
<div class="list" style="width: 400px; height: 1200px; position: relative; top: 0px; transition: top 0.5s ease-out;">
<div v-for="(item, index) in list" :key="index" class="item" style="width: 400px; height: 200px; position: absolute; top: {{ index * 200 }}px;">
<div>{{ item.name }}</div>
<div>{{ item.event }}</div>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
list: [
{ name: 'csw1', event: 'hhhhh' },
{ name: 'csw2', event: 'hhhhh' },
{ name: 'csw3', event: 'hhhhh' },
{ name: 'csw4', event: 'hhhhh' },
{ name: 'csw5', event: 'hhhhh' },
{ name: 'csw6', event: 'hhhhh' }
],
timer: null
}
},
mounted() {
this.startCarousel()
},
methods: {
startCarousel() {
this.timer = setInterval(() => {
const list = this.list.slice()
const item = list.shift()
list.push(item)
this.list = list
if (this.list.length === 6) {
clearInterval(this.timer)
setTimeout(() => {
this.list.push(
{ name: 'csw7', event: 'hhhhh' },
{ name: 'csw8', event: 'hhhhh' },
{ name: 'csw9', event: 'hhhhh' },
{ name: 'csw10', event: 'hhhhh' },
{ name: 'csw11', event: 'hhhhh' },
{ name: 'csw12', event: 'hhhhh' },
{ name: 'csw13', event: 'hhhhh' },
{ name: 'csw14', event: 'hhhhh' },
{ name: 'csw15', event: 'hhhhh' },
{ name: 'csw16', event: 'hhhhh' }
)
this.startCarousel()
}, 10000)
}
}, 2000)
}
}
}
</script>
<style scoped>
.container {
position: relative;
}
.list {
position: absolute;
}
.item {
overflow: hidden;
}
</style>
```
这段代码使用了 Vue 的 v-for 指令来渲染列表,并使用了 CSS 的 position 属性和 transition 属性来实现轮播效果。同时,使用了 setInterval 和 setTimeout 函数来控制轮播的速度和停止时间,并使用了 slice 函数和 push 函数来实现新数据的添加。
阅读全文