溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何通過css動(dòng)畫實(shí)現(xiàn)一個(gè)表格滾動(dòng)輪播效果

發(fā)布時(shí)間:2021-03-22 09:52:47 來源:億速云 閱讀:520 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了如何通過css動(dòng)畫實(shí)現(xiàn)一個(gè)表格滾動(dòng)輪播效果,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

css動(dòng)畫的一個(gè)應(yīng)用,與此前的css走馬燈同樣的內(nèi)容。只是一次不同的應(yīng)用,具體實(shí)現(xiàn)如下

如何通過css動(dòng)畫實(shí)現(xiàn)一個(gè)表格滾動(dòng)輪播效果

<template>
  <section>
    <div class="box">
      <ul class="header">
        <li class="cell">序號(hào)</li>
        <li class="cell">姓名</li>
        <li class="cell">年齡</li>
        <li class="cell">性別</li>
        <li class="cell">專業(yè)</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行數(shù)據(jù),此處復(fù)制開頭的5條數(shù)據(jù)實(shí)現(xiàn)無縫
    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>

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“如何通過css動(dòng)畫實(shí)現(xiàn)一個(gè)表格滾動(dòng)輪播效果”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI