How can I make the white arrow constantly have a slow pulse. Almost like the opacity goes from 100% to 60% every few seconds?
Thank you!
How can I make the white arrow constantly have a slow pulse. Almost like the opacity goes from 100% to 60% every few seconds?
Thank you!
Hello @AK49_Logan_907,
Thanks for writing in! What you have in mind is not possible. The Pulse animation is only possible with interaction.
For more details about how the Effects module works, please check out this video:
Hi, are we sure it’s not possible? This is one of the websites you guys promoted before.
They have the arrow pulsing. Still trying to figure out how they did it.
Hello @AK49_Logan_907,
The example site is using a custom CSS:
The button has a custom blink
class and in the Pro > Theme Options > CSS, this code was added:
.blink {
text-decoration: blink;
-webkit-animation-name: blinker;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-direction: alternate;
}
The code above will not work out of the box. The custom class must be added first before the custom CSS will work. Be advised that custom coding is beyond the scope of our support. You may need further assistance from other 3rd party developers.
Best regards.
Thank you for all your help!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.