CSS 动画实现滚动

CSS 动画实现滚动

animation: animation-name(动画名称) animation-duration(动画完成一个周期花费的秒、毫秒)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.marquee {
width: 1070px;
height: 30px;
white-space: nowrap;
animation: roll-animation 50s
}

// 规定动画
@keyframes animation-roll {
from: {
z-index: 50px;
}

to: {
z-index: -100px;
}
}