直播系統原始碼,vue實現無縫滾動

zhibo系統開發發表於2023-11-23

直播系統原始碼,vue實現無縫滾動

一、採用js的方法實現

<template>
<div>
<div class="box">
<div v-for="item in 2" class="item-box" :style="{transform:'translate(0,'+scrollTop+'px)'}">
<div class="item" v-for="i in 9">{{i}}</div>
</div>
</div>
</div>
</template>
 
<script>
export default {
data() {
return {
scrollTop: 0,
}
},
onLoad() {
this.roll()
},
methods: {
roll() {
if (this.scrollTop == -300) {
this.scrollTop = 0
}
this.scrollTop -= 1;
setTimeout(() => {
this.roll()
}, 10)
},
}
}
</script>
<style>
.box {
width: 320px;
height: 300px;
background-color: pink;
overflow: hidden;
}
 
.box .item-box {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
 
.box .item-box .item {
width: 29%;
height: 29%;
margin: 1%;
background-color: paleturquoise;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
}
</style>


二、css動畫實現

<template>
<div>
<div class="box">
<div v-for="item in 2" class="item-box">
<div class="item" v-for="i in 9">{{i}}</div>
</div>
</div>
</div>
</template>
 
<script>
export default {
data() {
return {}
},
methods: {
 
}
}
</script>
<style>
.box {
width: 320px;
height: 300px;
background-color: pink;
overflow: hidden;
}
 
.box .item-box {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
animation: roll 5s linear infinite;
}
 
.box .item-box .item {
width: 29%;
height: 29%;
margin: 1%;
background-color: paleturquoise;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
}
 
@keyframes roll {
0% {
transform: translate(0, 0px);
}
 
20% {
transform: translate(0, -60px);
}
 
40% {
transform: translate(0, -120px);
}
 
60% {
transform: translate(0, -180px);
}
 
80% {
transform: translate(0, -240px);
}
 
100% {
transform: translate(0, -300px);
}
}
</style>


以上就是 直播系統原始碼,vue實現無縫滾動,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2996813/,如需轉載,請註明出處,否則將追究法律責任。

相關文章