Hi,
Regarding Longer Delays.
If you have prior knowledge of CSS and how to modify them.
you can overwrite the Delay classes to have custom delays.
for example:
Go to the Settings page of Animate It.
Put the below code in the Custom CSS block
.delay1 {
-webkit-animation-delay: 20s;
-moz-animation-delay: 20s;
-ms-animation-delay: 20s;
-o-animation-delay: 20s;
}
Now while adding animation blocks, select the 0.5 sec option in the delay drop down, this now actually generates a delay of 20 seconds.
Ah – now I understand. I have tried exactly this. But I was not aware that it will OVERWRITE a already existing one. So do you think there would be a option adding additional ones, instead of overwriting? Same way, would work perfectly (adding at preferences page), but instead of overwriting it would be GREAT to be able to ADD additional delays and durations.
– Arne
You can add new classes also, In that case what you need to do is to modify the delay attribute of the generated shortcode.
for example. Add following CSS class using Custom CSS field
.delay50 {
-webkit-animation-delay: 50s;
-moz-animation-delay: 50s;
-ms-animation-delay: 50s;
-o-animation-delay: 50s;
}
Now in animation block, update the delay parameter as below:
[edsanimate animation=”shake” delay=”50″ infinite_animation=”no” animate_on=”” ]
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type
[/edsanimate]
Now you will have the additional delays
marking the topic resolved