Advertisement
Guest User

Untitled

a guest
May 27th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.40 KB | None | 0 0
  1.  
  2. #bg {
  3.   position: fixed;
  4.   background-color: black;
  5.  
  6.   height: 100%;
  7.   width: 100%;
  8.   margin: 0;
  9.   padding:0;
  10.  
  11.   z-index: 10000;
  12.  
  13.   animation: fadeout 2s;
  14.  
  15.   animation-fill-mode: forwards;
  16.  
  17.   pointer-events: none;
  18. }
  19.  
  20. @keyframes fadeout {
  21.   0% {
  22.     background-color: #000000;
  23.   }
  24.   60% {
  25.     background-color: #000000;
  26.   }
  27.   100% {
  28.     background-color: #00000000;
  29.   }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement