Guest User

Untitled

a guest
Dec 13th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. .wrapper {
  2. position: relative;
  3. width: 400px;
  4. height: 400px;
  5. }
  6.  
  7. .popup {
  8. position: absolute;
  9. right: 0;
  10. bottom: 0;
  11. width: 0;
  12. height: 0;
  13. border-radius: 10px;
  14. background: red;
  15. }
  16.  
  17. .bigger {
  18. animation: bigger .5s forwards;
  19. }
  20.  
  21. .smaller {
  22. animation: smaller .5s forwards;
  23. }
  24.  
  25. @keyframes bigger {
  26. 100% {
  27. width: 400px;
  28. height: 400px;
  29. }
  30. }
  31.  
  32. @keyframes smaller {
  33. 0% {
  34. width: 400px;
  35. height: 400px;
  36. }
  37. 100% {
  38. width: 0;
  39. height: 0;
  40. }
  41. }
Add Comment
Please, Sign In to add comment