Bonjour,
Je souhaiterais mettre ce loading :
https://codepen.io/worodhazam/pen/NWyxRYZ
sur mon site, mais je suis loin d'avoir le même résultats.
Mes CSS :
Le HTML :
et le JS :
Merci et bonne journée,
ED
Je souhaiterais mettre ce loading :
https://codepen.io/worodhazam/pen/NWyxRYZ
sur mon site, mais je suis loin d'avoir le même résultats.
Mes CSS :
#chargement {
position: absolute;
top: 50%;
bottom: 0;
left: 50%;
right: 0;
z-index: 99999999999999;
transform: translate(-50%, -50%);
color: white;
background-color: black;
box-sizing: border-box;
Margin: 0;
}
#chargement span {
font-size: 80px;
letter-spacing: 5px;
text-transform: uppercase;
line-height: 1;
mix-blend-mode: difference;
}
#chargement::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100px;
height: 100%;
background-color: white;
animation: move 4s linear infinite;
}
@keyframes move {
0%,
100% {
left: 0;
}
50% {
left: calc(100% - 100px);
}
}
Le HTML :
<div id="chargement"><span>Loading</span></div>
et le JS :
<script>
document.onreadystatechange = function()
{
if (document.readyState != "complete")
{
document.querySelector("body").style.visibility = "hidden";
document.querySelector("#chargement").style.visibility = "visible";
}
else
{
document.querySelector("#chargement").style.display = "none";
document.querySelector("body").style.visibility = "visible";
}
};
</script>
Merci et bonne journée,
ED