Hi,
On cleared-cache reload, my page displays the background image (clouds), then flashes with a re-positioned version. Is there a way to correct this behavior? Aside from “flashing”, probably slows down load.
Thanks!
Hey jarstern0,
I can’t reproduce that on my end using Chrome, in what browser are you seeing that?
Best regards,
Rikard
I’m in chrome too. See it on and off when I hard refresh a couple times. Is there any way to disable all load animation entirely? Would this help load speed?
Hi,
The css transitions are pretty light and disabling it will have minimal effect on the page’s loading speed. If you want to disable the transition of the parallax background, try the following css code.
.js_active .av-parallax.active-parallax {
opacity: 1;
-webkit-transition: none;
transition: none;
}
Best regards,
Ismael
Thank you. That worked to disable the transition, however I am still seeing the background appear, and then re position. I’m seeing this in chrome incognito on hard refresh.