模板:跳脸/style.css
外观
< 模板:跳脸
@keyframes zoomFromCenter { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.1); } 50% { opacity: 1; } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } } .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; transform: translate(-50%, -50%) scale(0.1); /* 初始:居中 + 缩小 */ transform-origin: center center !important; object-fit: contain !important; z-index: 99999 !important; animation: zoomFromCenter 1s ease-out forwards; opacity: 0; display: block !important; }