style.css:修订间差异
来自电棍ottowiki
更多操作
![]() 小 |
![]() OctoberSama(留言 | 贡献) 小 |
||
(未显示同一用户的1个中间版本) | |||
第16行: | 第16行: | ||
transform: translate(-50%, -50%) scale(0); | transform: translate(-50%, -50%) scale(0); | ||
} | } | ||
} | } | ||
第39行: | 第29行: | ||
transform: translate(-50%, -50%) scale(0.1); | transform: translate(-50%, -50%) scale(0.1); | ||
animation: zoomThenHide 1.5s ease-out forwards; | animation: zoomThenHide 1.5s ease-out forwards; | ||
z-index: | z-index: 1145 !important; | ||
display: block !important; | display: block !important; | ||
} | } |
2025年6月13日 (五) 16:29的最新版本
@keyframes zoomThenHide { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.1); } 20% { opacity: 1; transform: translate(-50%, -50%) scale(3); } 86.7% { opacity: 1; transform: translate(-50%, -50%) scale(3); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(0); } } .zoom-fullscreen { position: fixed !important; top: 50% !important; left: 50% !important; width: auto !important; height: auto !important; max-width: 100vw !important; max-height: 100vh !important; object-fit: contain !important; transform: translate(-50%, -50%) scale(0.1); animation: zoomThenHide 1.5s ease-out forwards; z-index: 1145 !important; display: block !important; }