Advertisement
kopyl

Figma plugin November 9 CSS

Nov 9th, 2021
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.28 KB | None | 0 0
  1. .notificationCustom {
  2.     animation: notificationCustom 1s linear forwards;
  3. }
  4.  
  5. @keyframes notificationCustom {
  6.     0% {
  7.         width: 0%;
  8.         opacity: 1;
  9.     }
  10.     20% {
  11.         width: 100%;
  12.         opacity: 1;
  13.     }
  14.     80% {
  15.         width: 100%;
  16.         opacity: 1;
  17.     }
  18.     100% {
  19.         width: 100%;
  20.         opacity: 0;
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement