Hi Huys
Does anyone know how i can change my AOS from zoom to fade using just CSS?
Hi Huys
Does anyone know how i can change my AOS from zoom to fade using just CSS?
You might be able to unset the transform values.
[data-aos=zoom-in] {
transform: unset;
}
[data-aos^=zoom][data-aos^=zoom].aos-animate {
transform: unset;
}
If you want it slower you can overwrite the duration selector.
[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
transition-duration: 0.6s;
}
Not sure if you will need to use !important or how the load order of the CSS will be.