您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何通過css動畫實現一個表格滾動輪播效果,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
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動畫實現一個表格滾動輪播效果”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。