elaine011 / test-issue

0 stars 0 forks source link

Animation #34

Open elaine011 opened 2 years ago

elaine011 commented 2 years ago

Utilities for animating elements with CSS animations.

Default class reference

Class | Properties -- | -- animate-none | animation: none; animate-spin | animation: spin 1s linear infinite; @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } animate-ping | animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; @keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } } animate-pulse | animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; @keyframes pulse { 0%, 100% { opacity: 1;
yarchiee commented 2 years ago

哈哈哈