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;
}
}