我有一个相当基本的“颜色脉冲”动画,当您将鼠标悬停在某物上时,它会从白色变为蓝色。除了一件事之外,这很好用——当我移开鼠标时,它会立即恢复为白色。我试图弄清楚如何让它变回白色,但到目前为止还没有运气。
手写笔代码:
@-webkit-keyframes pulse
0%
background #FFF
50%
background #88B1DA
100%
background #FFF
.scaffolding
background #FFF
transition background 0.5s linear
&:hover
animation pulse 2s linear infinite;