The image is loading very slowly, I need it load up correctly and have the rising animation before the text box below
Browse files- index.html +5 -3
index.html
CHANGED
|
@@ -38,9 +38,11 @@
|
|
| 38 |
document.addEventListener('DOMContentLoaded', () => {
|
| 39 |
setTimeout(() => {
|
| 40 |
document.getElementById('hero-logo').classList.remove('opacity-0', 'translate-y-10');
|
| 41 |
-
|
|
|
|
|
|
|
| 42 |
}, 200);
|
| 43 |
-
|
| 44 |
</script>
|
| 45 |
</div>
|
| 46 |
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
|
|
@@ -64,7 +66,7 @@
|
|
| 64 |
<div class="hero-bg pt-32 pb-20 md:pt-40 md:pb-32">
|
| 65 |
<div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 66 |
<div class="absolute inset-0 bg-[url('https://static.photos/legal/1200x630/42')] opacity-10 bg-cover bg-center -z-10"></div>
|
| 67 |
-
<img id="hero-logo" src="https://
|
| 68 |
<p id="hero-tagline" class="text-3xl md:text-5xl text-gray-300 max-w-3xl mx-auto opacity-0 transform translate-y-10 transition-all duration-1000 delay-300 italic tracking-wide" style="font-family: 'Montserrat', sans-serif; font-style: italic;">
|
| 69 |
Just list it, with perfection!
|
| 70 |
</p>
|
|
|
|
| 38 |
document.addEventListener('DOMContentLoaded', () => {
|
| 39 |
setTimeout(() => {
|
| 40 |
document.getElementById('hero-logo').classList.remove('opacity-0', 'translate-y-10');
|
| 41 |
+
setTimeout(() => {
|
| 42 |
+
document.getElementById('hero-tagline').classList.remove('opacity-0', 'translate-y-10');
|
| 43 |
+
}, 500);
|
| 44 |
}, 200);
|
| 45 |
+
});
|
| 46 |
</script>
|
| 47 |
</div>
|
| 48 |
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
|
|
|
|
| 66 |
<div class="hero-bg pt-32 pb-20 md:pt-40 md:pb-32">
|
| 67 |
<div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 68 |
<div class="absolute inset-0 bg-[url('https://static.photos/legal/1200x630/42')] opacity-10 bg-cover bg-center -z-10"></div>
|
| 69 |
+
<img id="hero-logo" src="https://static.photos/technology/640x360/42" alt="Twinory Logo" class="h-80 mx-auto mb-6 opacity-0 transform translate-y-10 transition-all duration-1000" loading="eager">
|
| 70 |
<p id="hero-tagline" class="text-3xl md:text-5xl text-gray-300 max-w-3xl mx-auto opacity-0 transform translate-y-10 transition-all duration-1000 delay-300 italic tracking-wide" style="font-family: 'Montserrat', sans-serif; font-style: italic;">
|
| 71 |
Just list it, with perfection!
|
| 72 |
</p>
|