effect.scss 324 B

12345678910111213141516171819
  1. @keyframes blink
  2. {
  3. from {
  4. opacity:0.25;
  5. }
  6. to{
  7. opacity:1;
  8. }
  9. }
  10. .blink{
  11. animation: blink;
  12. animation-duration: 2s;
  13. animation-timing-function: cubic-bezier(0,0,0.58,1);
  14. animation-direction: alternate;
  15. animation-play-state: running;
  16. animation-iteration-count: infinite;
  17. }