Files
EasySoft-ZenTaoPMS/module/upgrade/css/confirm.css
T
2023-08-03 14:58:05 +08:00

11 lines
239 B
CSS

.progress-bar {
transition: width 0.1s; /* 将过渡时间设置为 0.5 秒 */
animation: progress-animation 0.1s; /* 将动画时间设置为 0.5 秒 */
}
@keyframes progress-animation {
0% { width: 0; }
100% { width: 100%; }
}