html动画轮播效果代码,通过css动画实现⼀个表格滚动轮播效
果的代码
序号
姓名
年龄
性别
css设置表格滚动条
专业
v-for="(item, index) in arr"
:key="index"
class="row"
>
{{ item }}
{{ n }}
export default {
data() {
return {
arr: [],
}
},
created() {
this.arr = Array.from(new Array(20), (v, k) => {
return k + 1
})
// 表格显⽰5⾏数据,此处复制开头的5条数据实现⽆缝
this.arr = at(this.arr.slice(0, 5))
}
}
$cellHeight: 30px;
ul {
list-style: none;
margin: 0;
padding: 0;
}
.
box {
width: 60%;
margin: auto;
}
.header {
display: flex;
}
.body {
height: 5 * $cellHeight;
overflow: hidden;
// padding-bottom: 10px;
li {
display: flex;
height: $cellHeight;
}
}
.cell {
flex: 1;
height: $cellHeight;
line-height: $cellHeight;
border: 1px solid #e2e2e2;
box-sizing: border-box;
}
.list {
animation: scroll 10s linear infinite; position: relative;
}
@keyframes scroll {
from { top: 0; }
to { top: -20 * $cellHeight }
}

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