hi i tested this piece of code found on stackoverflow here
without success...
I manage to use 'Swup' for the transitions but not for the arrival on the page
* {
-webkit-transition: all .5s;
-webkit-animation-name: myfading;
-webkit-animation-duration: .8s;
}
@-webkit-keyframes myfading {
from {
opacity: 0;
-webkit-transition: opacity;
}
to {
opacity: 1;
}
}
Hi you shouldn't add an Animation style to every html element with the * selector. Why don't you think about to place a fullscreen Container on top of every element and fade this Container out with a timed animation? Something like this: