-
Notifications
You must be signed in to change notification settings - Fork 17k
Open
Description
<style>
body {
margin: 0;
background: #000;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
}
.splash-screen {
animation: fadeOut 3s forwards;
}
.app-name {
color: #FF69B4; /* Rose vif */
font-size: 3em;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
@keyframes fadeOut {
0% { opacity: 1; }
90% { opacity: 1; }
100% { opacity: 0; display: none; }
}
</style>
xana
<script>
// Redirection après l'animation
setTimeout(() => {
window.location.href = "login.html";
}, 3000);
</script>
Metadata
Metadata
Assignees
Labels
No labels