Dear Václav,
Thanks for using the Animate It!
Ot looks like before the images are loaded, all the DIVs are visible on the screen.
Hence the Aniamtions run just then.
Try this out. i have added some minimum heights to the DIVs, so that they have some height even before the images are loaded:
Follow these steps:
1. Go to Extensions -> Plugin Manager -> System - Animate IT!
www.downloads.eleopard.in/images/animateit-demo/16/9.jpg
2. Paste the following CSS in Custom CSS box and click save:
@media only screen and (min-width: 1200px) {
#sp-slide, #sp-anketa-row{
min-height: 523px;
}
}
@media only screen and (min-width: 992px) {
#sp-slide, #sp-anketa-row{
min-height: 444px;
}
}
@media only screen and (min-width: 768px) {
#sp-slide, #sp-anketa-row{
min-height: 333px;
}
}
Now, see if the issue is resolved.