vue实现消息的⽆缝滚动效果的⽰例代码
朋友的项⽬⾥要实现⼀个消息⽆缝滚动的效果,中途遇到了⼀点⼩bug,每组消息滚动完再次循环时会出现停留两倍的时间间隔问题,我研究了⼀天终于解决了这个1S的⼩问题
项⽬环境vue-cli ,请⾃⾏配置好相应的,环境及路由,这⾥主要介绍实现的⽅法
第⼀步在模板中使⽤v-for⽅法循环出消息列表
<template>
<div id="box">
<ul id="con1" ref="con1" :class="{anim:animate==true}">
<li v-for='item in items'>{{item.name}}</li>
</ul>
</div>
</template>
第⼆步在<script>标签中放置消息数组和具体的method ⽅法。
<script>
export default {
data() {
return {
animate:false,
items:[  //消息列表对应的数组
{name:"马云"},
{name:"雷军"},
{name:"王勤"}
]
}
},
created(){
setInterval(this.scroll,1000) // 在钩⼦函数中调⽤我在method ⾥⾯写的scroll()⽅法,注意此处不要忘记加this,我在这个位置掉了好⼏次坑,都是因为忘记写this。},
methods: {
scroll(){
let con1 = this.$1;
con1.style.marginTop='-30px';
this.animate=!this.animate;
var that = this; // 在异步函数中会出现this的偏移问题,此处⼀定要先保存好this的指向
setTimeout(function(){
that.items.push(that.items[0]);
that.items.shift();
con1.style.marginTop='0px';
that.animate=!that.animate;  // 这个地⽅如果不把animate 取反会出现消息回滚的现象,此时把ul 元素的过渡属性取消掉就可以完美实现⽆缝滚动的效果了    },500)
}
}
}
</script>
<style>
*{
margin: 0 ;
padding: 0;
html滚动效果代码}
#box{
width: 300px;
height: 32px;
line-height: 30px;
overflow: hidden;
padding-left: 30px;
border: 1px solid black;
transition: all 0.5s;
}
.
anim{
transition: all 0.5s;
}
#con1 li{
list-style: none;
line-height: 30px;
height: 30px;
}
</style>
以上就是这篇⽂章的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。