Hi @freddyee,
I’m not sure that I understand your question completely (sorry!), there’s an option in the Behaviour tab when editing your popup to set entrance and exit animation for the entire popup, but I’m guessing this is not what you’re looking for?
Could you elaborate a bit ore on the bounce button effect that you’re looking to have, do you want to make the button bigger on hover perhaps?
Cheers,
Predrag
Once the pop up is shown I want the “Send” button to have like a pulse or jump animation automatically.
is that possible to get with the plugin ?
Hi @freddyee
This will require a custom CSS,
Can you try this CSS on Hustle > Appearance > Custom CSS?
.hustle-button-submit {
box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
transform: scale(1);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
}
It will work for the email submit button.
You can also replace the rgba to a different colour.
https://monosnap.com/file/78R5sx4zOc6U9PqbIzy1sg0XWGvVnE
Best Regards
Patrick Freitas
Hi @freddyee
I hope you are doing well and safe!
We haven’t heard from you in a while, I’ll mark this thread as resolved.
Feel free to let us know if you have any additional question or problem.
Best Regards
Patrick Freitas