Advertisement
ikai2

fix font loading flicker

Jul 16th, 2023
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // paste at the end of the head
  2. <style>
  3. body {
  4. opacity: 0;
  5. }
  6. </style>
  7.  
  8.  
  9. // paste at the end of the body
  10. <script>
  11. window.onload = function (){
  12. document.body.style.opacity = 1;
  13. }
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement