MediaWiki:Aprilfool.css
MediaWiki界面页面
更多操作
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5。
@keyframes moveRight {
from { transform: translateX(-200px); }
to { transform: translateX(110vw); }
}
@keyframes swapImage {
0%, 49% { opacity: 1; }
50%, 100% { opacity: 0; }
}
.moving-wrapper {
position: fixed;
z-index: 9999;
animation: moveRight linear forwards;
width: 100px;
height: 100px;
}
.moving-wrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
animation: swapImage 0.2s steps(1) infinite;
}
.moving-wrapper img:nth-child(2) {
animation-delay: 0.1s;
}