css动画的一个应用,与此前的css走马灯同样的内容。只是一次不同的应用,具体实现如下
- 序号
- 姓名
- 年龄
- 性别
- 专业
- {{ item }} {{ n }}
$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 } }
总结
到此这篇关于通过css动画实现一个表格滚动轮播效果的文章就介绍到这了,更多相关css 动画表格滚动轮播内容请搜索考高分网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持考高分网!



