Search
 
SCRIPT & CODE EXAMPLE
 

HTML

how to add preloader in html page

$(window).on('load', function() { // makes sure the whole site is loaded 
  $('#status').fadeOut(); // will first fade out the loading animation 
  $('#preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website. 
  $('body').delay(350).css({'overflow':'visible'});
})
Comment

preload html

<head>
  <meta charset="utf-8">
  <title>JS and CSS preload example</title>

  <link rel="preload" href="style.css" as="style">
  <link rel="preload" href="main.js" as="script">

  <link rel="stylesheet" href="style.css">
</head>

<body>
  <h1>bouncing balls</h1>
  <canvas></canvas>

  <script src="main.js" defer></script>
</body>
Comment

PREVIOUS NEXT
Code Example
Html :: use svg as favicon react 
Html :: twig map 
Html :: how to put dowloadable resume on website html 
Html :: greater then less then in html text 
Html :: birthday wishes using html code 
Html :: phone input html 
Html :: sub html 
Html :: disable an anchor tag 
Html :: accept vedio pdf files upload html 
Html :: agregar texto debajo de una imagen html 
Html :: svelte for loop for index 
Html :: how to put image in html in right side 
Html :: html basic website 
Html :: html video fallback 
Html :: navbar with logo css 
Html :: html definition list 
Html :: how to keep :active css style after click a button 
Html :: react native force light mode 
Html :: how to make a username and password in html 
Html :: html default file name a tag 
Html :: how can you make a bulleted list with numbers in html 
Html :: metamask delete account 
Html :: link em imagem html 
Html :: dead link html 
Html :: how to detect play button on html video player 
Html :: div symbol latex 
Html :: coreui margin right 
Html :: creastapp 
Html :: jumbotron code without using jumbotron 
Html :: Bootstrap 4.6 Starter Template | bootstrap starter template 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =