Hey @metaphorcreations,
Yes, we’re planning on adding more intervals as it has been requited by more people. Keep an eye on an upcoming release. 🙂
@metaphorcreations We’ve released a new version which should take care of it. Let us know. 🙂
Thanks for the update and adding some more options. I appreciate the responsiveness!
It wasn’t exactly what I was looking for as there are still limited options. Is is possible to have a more open ended solution? Like being able to enter any number value, or slider that increments by tenths from 0.0 – 10.0, for example.
I’m just thinking of situation where I have 5 (or 10) elements horizontally in a row and then want them to appear one after another every tenth of a second. It’s not currently possible supplied dropdown options.
Thanks!
Hey @metaphorcreations,
We control the delay using CSS so that’s why there’s a limit to that options we can have.
What we can do is tell you a way in which you can stop using the delay option and put CSS classes to the element instead with custom delays.
Let’s say you want one animation with 300ms delay, you add the following CSS to your WordPress:
.animated.delay-300ms {
-webkit-animation-delay: 300ms;
animation-delay: 300ms;
}
And then add delay-300ms as CSS classes to the element using the “Advanced” tab on Block Sidebar.
Let me know if it helps. 🙂
Thanks for the info and tips!
Let me know if it worked for you. 🙂
Yes, that works for me. Thanks!