/* 电影演职员表一样文字向上移动 */ /* 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%; } }