< 模板:内容向上轮播(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
/* 电影演职员表一样文字向上移动 */
/* CSS Movie Credits
*
* Original version found at: http://codepen.io/reejosamuel/pen/ALjcr
* current version crafted together by [[User:Christharp]] to work inside Mediawiki..
*/
.sealoff {
position: relative;
width: 100%;
height: 200px;
overflow: hidden;
}
.wrapper {
position: relative;
top: 100%;
left: 0%;
width: 100%;
animation: 10s credits linear infinite;
animation-direction: normal;
text-align: center;
}
@keyframes credits {
0% {
top: 100%;
}
100% {
top: -200%;
}
}