rogerxu / rogerxu.github.io

Roger Xu's Blog
2 stars 2 forks source link

CSS Animations #64

Open rogerxu opened 7 years ago

rogerxu commented 7 years ago

animation | CSS-Tricks

rogerxu commented 7 years ago

CSS 对比 JavaScript 动画  |  Web  |  Google Developers

rogerxu commented 7 years ago

CSS Animations

.element {
  animation: pulse 5s infinite;
}

@keyframes pulse {
  0% {
    background-color: #001F3F;
  }
  100% {
    background-color: #FF4136;
  }
}