打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Aprilfool.css

MediaWiki界面页面

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-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;
}