Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Find ye section:
- <script>
- // añade un preloader a body
- window.addEventListener('load', () => {
- const body = document.querySelector('body');
- body.classList.add('loaded');
- });
- </script>
- replace with:
- <script>
- // añade un preloader a body con un minimo de tiempo :))
- const startTime = Date.now();
- const minLoadTime = 3000; // tiempo minimo en milisegundos (3000 = 3 segundos)
- window.addEventListener('load', () => {
- const elapsedTime = Date.now() - startTime;
- const remainingTime = Math.max(0, minLoadTime - elapsedTime);
- setTimeout(() => {
- const body = document.querySelector('body');
- body.classList.add('loaded');
- }, remainingTime);
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment