hello,
On my website https://pg-hm.com/ I have the on scroll element transitions activated to animate the text, I don't want the pictures to be animated.
I applied the "no-animation" class to the pictures but it doesn't seem to work
I did a workaround for some pictures, where I gave them a -0.1 offset.
I also tried using this code in CSS :
.notransition {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
}
it almost solves the problem, the pictures dont have the transition anymore but still 'pop up' when scrolled to
thanks in advance