Template:跳脸/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(3);
}
}
.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 0.3s ease-out forwards;
opacity: 0;
display: block !important;
}