Animated Save Button - Grab Attention
Grab a user's attention to the save button of the form, allowing them to stay on the page, and press Save first.
One Easy Step
Add the following code to the CSS tab of your page.
.btn-success {
animation: pulsate-fwd 0.5s ease-in-out infinite both;
border: 0px solid #fff;
border-radius: 10px;
}
@keyframes pulsate-fwd {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
Original Community Post:
Present Warning to User before Leaving - Community Discussions / How Do I - Tadabase Community
We'd love to hear your feedback.