• Resolved freddyee

    (@freddyee)


    Hi

    the plugin is really good.
    I was wondering if there is possible to add some effects on the pop up like a bounce sending button, how could that be done ?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    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

    Thread Starter freddyee

    (@freddyee)

    Once the pop up is shown I want the “Send” button to have like a pulse or jump animation automatically.

    Thread Starter freddyee

    (@freddyee)

    is that possible to get with the plugin ?

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    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

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    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

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Bounce button’ is closed to new replies.