animation aside
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
transform: scale(0); }
|
||||
100% {
|
||||
transform: scale(0.5); } }
|
||||
|
||||
@keyframes slidein {
|
||||
from {
|
||||
transform: translateX(0%); }
|
||||
to {
|
||||
transform: translateX(100%); } }
|
||||
|
||||
@keyframes dropDown {
|
||||
from {
|
||||
transform: translateY(0%); }
|
||||
to {
|
||||
transform: translateY(100%); } }
|
||||
|
||||
@keyframes translateAnimation {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
/* Start translation */ }
|
||||
50% {
|
||||
transform: translateX(200); }
|
||||
100% {
|
||||
transform: translateX(500px);
|
||||
/* End translation */ } }
|
||||
|
||||
@keyframes changeColor {
|
||||
0% {
|
||||
fill: #b9ce00;
|
||||
/* Initial fill color */ }
|
||||
100% {
|
||||
fill: #ff804d;
|
||||
/* Final fill color */ } }
|
||||
|
||||
@keyframes changeColor2 {
|
||||
0% {
|
||||
fill: #038788;
|
||||
/* Initial fill color */ }
|
||||
100% {
|
||||
fill: #349a84;
|
||||
/* Final fill color */ } }
|
||||
|
||||
@keyframes traceAppear {
|
||||
0% {
|
||||
opacity: 0; }
|
||||
80% {
|
||||
opacity: 0; }
|
||||
100% {
|
||||
opacity: 1; } }
|
||||
@@ -715,6 +715,7 @@ header #block-colloque2024-mainnavigation ul li {
|
||||
z-index: -1;
|
||||
position: absolute;
|
||||
width: 25%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
margin: auto;
|
||||
padding: auto; }
|
||||
|
||||
Reference in New Issue
Block a user