这段时间遇到一个需求, 从后端获取到很多人的名字 需要横向滚动轮播这些名字, 就像商铺门口的电子横幅一样
查了很多的插件 也没有找到自己想要的感觉 于是准备自己写一个通用的组件
创建一个my-marquee.vue 文件
<template>
<div class="wrap">
<div ref="box" class="box">
<div ref="marquee" class="marquee">{{text}}</div>
<div ref="copy" class="copy"></div>
</div>
<div ref="node" class="node">{{text}}</div>
</div>
</template>
<script>
export default {
name : 'Marquee',
props: ['lists'],
data () {
return {
text: ''
}
},
methods: {
move () {
let width = this.$refs.node.getBoundingClientRect().width
this.$refs.copy.innerText = this.text
let distance = 0
let a = setInterval(() => {
distance = distance - 1
if (-distance >= width) {
distance = 16
}
try{
this.$refs.box.style.transform = 'translateX(' + distance + 'px)'
}catch{
clearInterval(a)
}
}, 50)
}
},
mounted: function () {
for (let i = 0; i < this.lists.length; i++) {
this.text += ' ' + this.lists[i]
}
},
updated: function () {
this.move()
},
watch:{
lists:{
handler(val){
for (let i = 0; i < this.lists.length; i++) {
this.text += ' ' + this.lists[i]
}
}
}
}
}
</script>
<style scoped>
.wrap {
overflow: hidden;
}
.box {
width: 80000%;
}
.box div {
float: left;
}
.marquee {
margin: 0 16px 0 0;
}
.node {
position: absolute;
z-index: -999;
top: -999999px;
}
</style>
然后在需要的地方中使用这个组件即可 参数是一个数组[ "刘德华","张学友"]
|