Guest User

Untitled

a guest
Oct 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. .bg {
  2. position: absolute;
  3. z-index: 0;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. margin: 0;
  9. padding: 0;
  10. background: #ffae00;
  11. }
  12.  
  13. .ping {
  14. position: absolute;
  15. z-index: 1;
  16. display: block;
  17. top: 0;
  18. left: 0;
  19. width: 100%;
  20. height: 100%;
  21. background: #006d0e;
  22. animation: ping 2s infinite;
  23. }
  24.  
  25. .ping p {
  26. position: absolute;
  27. top: 50%;
  28. left: 50%;
  29. margin-left: -225px;
  30. margin-top: -30px;
  31. width: 450px;
  32. text-align: center;
  33. font-size: 30px;
  34. font-weight: 600;
  35. color: #fff;
  36. }
  37.  
  38. @keyframes ping {
  39. 0% {
  40. -webkit-clip-path: circle(0% at center);
  41. -moz-clip-path: circle(0% at center);
  42. clip-path: circle(0% at center);
  43. opacity: 0;
  44. }
  45. 10% {
  46. opacity: 1;
  47. }
  48. 100% {
  49. -webkit-clip-path: circle(30% at center);
  50. -moz-clip-path: circle(30% at center);
  51. clip-path: circle(30% at center);
  52. opacity: 0;
  53. }
  54. }
Add Comment
Please, Sign In to add comment