模板:跳脸/style.css:修订间差异
外观
< 模板:跳脸
![]() OctoberSama(留言 | 贡献) 小 |
![]() OctoberSama(留言 | 贡献) 小 |
||
第9行: | 第9行: | ||
100% { | 100% { | ||
opacity: 1; | opacity: 1; | ||
transform: scale( | transform: scale(60); /* 放大倍数,根据屏幕大小调整 */ | ||
} | } | ||
} | } |
2025年5月18日 (日) 14:45的版本
@keyframes zoomExpand { 0% { opacity: 0; transform: scale(0.1); } 50% { opacity: 1; } 100% { opacity: 1; transform: scale(60); /* 放大倍数,根据屏幕大小调整 */ } } .zoom-expand { position: fixed !important; top: 50% !important; left: 50% !important; max-width: none !important; max-height: none !important; width: auto !important; height: auto !important; transform-origin: center center !important; transform: translate(-50%, -50%) scale(0.1); opacity: 0; z-index: 9999 !important; animation-name: zoomExpand; animation-duration: 1s; animation-fill-mode: forwards; animation-timing-function: ease-out; animation-delay: 0s; }