当前位置:主页 > 查看内容

通过css动画实现一个表格滚动轮播效果

发布时间:2021-05-18 00:00| 位朋友查看

简介:css动画的一个应用,与此前的css走马灯同样的内容。只是一次不同的应用,具体实现如下 template section div class=box ul class=header li class=cell序号/li li class=cell姓名/li li class=cell年龄/li li class=cell性别/li li class=cell专业/li /ul di……

css动画的一个应用,与此前的css走马灯同样的内容。只是一次不同的应用,具体实现如下

表格

<template>
  <section>
    <div class="box">
      <ul class="header">
        <li class="cell">序号</li>
        <li class="cell">姓名</li>
        <li class="cell">年龄</li>
        <li class="cell">性别</li>
        <li class="cell">专业</li>
      </ul>
      <div class="body">
        <ul class="list">
          <li
            v-for="(item, index) in arr"
            :key="index"
            class="row"
          >
            <span class="cell">{{ item }}</span>
            <span v-for="(n) in 4" :key="n*30" class="cell">{{ n }}</span>
          </li>
        </ul>
      </div>
    </div>
  </section>
</template>

<script>
export default {
  data() {
    return {
      arr: [],
    }
  },
  created() {
    this.arr = Array.from(new Array(20), (v, k) => {
      return k + 1
    })
    // 表格显示5行数据,此处复制开头的5条数据实现无缝
    this.arr = this.arr.concat(this.arr.slice(0, 5))
  }
}
</script>

<style lang="scss">
$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 }
}
</style>

总结

到此这篇关于通过css动画实现一个表格滚动轮播效果的文章就介绍到这了,更多相关css 动画表格滚动轮播内容请搜索脚本之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持脚本之家!


原文链接:https://m.jb51.net/css/715942.html
本站部分内容转载于网络,版权归原作者所有,转载之目的在于传播更多优秀技术内容,如有侵权请联系QQ/微信:153890879删除,谢谢!

推荐图文


随机推荐