【发布时间】:2021-01-03 05:02:15
【问题描述】:
当我运行它时,颜色会在 5 秒后改变,但在 5 秒后它会变回白色,但我希望它保持 #1b1b1b
.bg {
-webkit-animation: change-color 5s; /* Safari 4+ */
-moz-animation: change-color 5s; /* Fx 5+ */
-o-animation: change-color 5s; /* Opera 12+ */
animation: change-color 5s; /* IE 10+ */
}
和
@-webkit-keyframes change-color {
from {
background: White;
}
to {
background: #1b1b1b;
}
}
(I also use -moz-animation etc)
【问题讨论】: