|
|
|
@@ -2,55 +2,53 @@
|
|
|
|
|
|
|
|
|
|
#home{
|
|
|
|
|
/////////////////animation pilliers //////////////
|
|
|
|
|
|
|
|
|
|
#paragraph-id--7 .colone-picto h5,
|
|
|
|
|
#paragraph-id--7 .colone-picto p,
|
|
|
|
|
#paragraph-id--7 .colone-picto svg #pillier-1-path365,
|
|
|
|
|
#paragraph-id--7 .colone-picto svg #pillier-2-path367,
|
|
|
|
|
#paragraph-id--7 .colone-picto svg #pillier-3-path369{
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.visible{
|
|
|
|
|
h5:nth-of-type(1) {
|
|
|
|
|
animation-delay: 1s;
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 1s;
|
|
|
|
|
animation: Appear 1s 0.2s forwards;
|
|
|
|
|
}
|
|
|
|
|
svg:nth-of-type(1) {
|
|
|
|
|
animation-delay: 2s; /* Start after h5 (1s) + h5 duration (1s) */
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 5s; /* Assuming svg animation is 5s */
|
|
|
|
|
svg #pillier-1-path365 {
|
|
|
|
|
stroke-dasharray: 1000; /* Longueur totale du chemin */
|
|
|
|
|
stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
animation: Appear 1s 1.5s forwards, fillAnimation 3s 1.5s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
}
|
|
|
|
|
p:nth-of-type(1) {
|
|
|
|
|
animation-delay: 7s; /* Start after svg (2s) + svg duration (5s) */
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 1s;
|
|
|
|
|
animation: Appear 1.5s 3s forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
h5:nth-of-type(2) {
|
|
|
|
|
animation-delay: 8s; /* Start after p (7s) + p duration (1s) */
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 1s;
|
|
|
|
|
animation: Appear 1s 4s forwards;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
svg:nth-of-type(2) {
|
|
|
|
|
animation-delay: 9s; /* Start after h5 (8s) + h5 duration (1s) */
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 5s; /* Assuming svg animation is 5s */
|
|
|
|
|
svg #pillier-2-path367 {
|
|
|
|
|
stroke-dasharray: 1000; /* Longueur totale du chemin */
|
|
|
|
|
stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
animation: Appear 1s 5s forwards, fillAnimation 3s 5s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
}
|
|
|
|
|
p:nth-of-type(2) {
|
|
|
|
|
animation-delay: 14s; /* Start after svg (9s) + svg duration (5s) */
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 1s;
|
|
|
|
|
animation: Appear 1.5s 6s forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h5:nth-of-type(3) {
|
|
|
|
|
animation-delay: 15s; /* Start after p (14s) + p duration (1s) */
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 1s;
|
|
|
|
|
animation: Appear 1s 7s forwards;
|
|
|
|
|
}
|
|
|
|
|
svg:nth-of-type(3) {
|
|
|
|
|
animation-delay: 16s; /* Start after h5 (15s) + h5 duration (1s) */
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 5s; /* Assuming svg animation is 5s */
|
|
|
|
|
svg #pillier-3-path369 {
|
|
|
|
|
stroke-dasharray: 1000; /* Longueur totale du chemin */
|
|
|
|
|
stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
animation: Appear 1s 8s forwards, fillAnimation 3s 8s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
}
|
|
|
|
|
p:nth-of-type(3) {
|
|
|
|
|
animation-delay: 21s; /* Start after svg (16s) + svg duration (5s) */
|
|
|
|
|
animation-name: Appear;
|
|
|
|
|
animation-duration: 1s;
|
|
|
|
|
animation: Appear 1.5s 9s forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes Appear {
|
|
|
|
|
0%{
|
|
|
|
|
opacity: 0;
|
|
|
|
@@ -59,41 +57,42 @@
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#paragraph-id--7 .colone-picto svg #pillier-1-path365{
|
|
|
|
|
stroke-dasharray: 1000; /* Longueur totale du chemin */
|
|
|
|
|
stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
animation: fillAnimation 5s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
animation-delay: 5s;
|
|
|
|
|
// animation-direction: alternate; /* Animation en aller-retour */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
#paragraph-id--7 .colone-picto svg #pillier-2-path367{
|
|
|
|
|
stroke-dasharray: 0; /* Longueur totale du chemin */
|
|
|
|
|
stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
animation: fillAnimation 5s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
animation-delay: 5s;
|
|
|
|
|
// animation-direction: alternate; /* Animation en aller-retour */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
#paragraph-id--7 .colone-picto svg #pillier-3-path369{
|
|
|
|
|
stroke-dasharray: 1000; /* Longueur totale du chemin */
|
|
|
|
|
stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
animation: fillAnimation 5s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
animation-delay: 5s;
|
|
|
|
|
// animation-direction: alternate; /* Animation en aller-retour */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fillAnimation {
|
|
|
|
|
from {
|
|
|
|
|
stroke-dashoffset: 1000; /* Début du chemin de décalage complet */
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
stroke-dashoffset: 0; /* Aucun décalage, le chemin est complètement visible */
|
|
|
|
|
@keyframes fillAnimation {
|
|
|
|
|
from {
|
|
|
|
|
stroke-dashoffset: 1000; /* Début du chemin de décalage complet */
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
stroke-dashoffset: 0; /* Aucun décalage, le chemin est complètement visible */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// #paragraph-id--7 .colone-picto svg #pillier-1-path365{
|
|
|
|
|
// stroke-dasharray: 1000; /* Longueur totale du chemin */
|
|
|
|
|
// stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
// animation: fillAnimation 5s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
// animation-delay: 5s;
|
|
|
|
|
// animation-direction: alternate; /* Animation en aller-retour */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
// #paragraph-id--7 .colone-picto svg #pillier-2-path367{
|
|
|
|
|
// stroke-dasharray: 0; /* Longueur totale du chemin */
|
|
|
|
|
// stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
// animation: fillAnimation 5s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
// animation-delay: 5s;
|
|
|
|
|
// // animation-direction: alternate; /* Animation en aller-retour */
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
// #paragraph-id--7 .colone-picto svg #pillier-3-path369{
|
|
|
|
|
// stroke-dasharray: 1000; /* Longueur totale du chemin */
|
|
|
|
|
// stroke-dashoffset: 1000; /* Décalage initial pour cacher le chemin */
|
|
|
|
|
// animation: fillAnimation 5s ease-in-out forwards; /* Animation de remplissage sur 2 secondes */
|
|
|
|
|
// animation-delay: 5s;
|
|
|
|
|
// // animation-direction: alternate; /* Animation en aller-retour */
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|