打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
OctoberSama留言 | 贡献2025年5月18日 (日) 14:23的版本 (创建页面,内容为“@keyframes scaleIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } } .popup-image { animation: scaleIn 0.3s ease forwards; }”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-image {
  animation: scaleIn 0.3s ease forwards;
}