popmake_core_popup_display_animation_type_options( $options )


Description Description


Source Source

File: includes/input-options.php

function popmake_core_popup_display_animation_type_options( $options ) {
	return array_merge( $options, array(
		// option => value
		__( 'None', 'popup-maker' )           => 'none',
		__( 'Slide', 'popup-maker' )          => 'slide',
		__( 'Fade', 'popup-maker' )           => 'fade',
		__( 'Fade and Slide', 'popup-maker' ) => 'fadeAndSlide',
		__( 'Grow', 'popup-maker' )           => 'grow',
		__( 'Grow and Slide', 'popup-maker' ) => 'growAndSlide',
	) );
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.