popmake_core_popup_display_animation_origins_options( $options )


Description Description


Source Source

File: includes/input-options.php

function popmake_core_popup_display_animation_origins_options( $options ) {
	return array_merge( $options, array(
		// option => value
		__( 'Top', 'popup-maker' )           => 'top',
		__( 'Left', 'popup-maker' )          => 'left',
		__( 'Bottom', 'popup-maker' )        => 'bottom',
		__( 'Right', 'popup-maker' )         => 'right',
		__( 'Top Left', 'popup-maker' )      => 'left top',
		__( 'Top Center', 'popup-maker' )    => 'center top',
		__( 'Top Right', 'popup-maker' )     => 'right top',
		__( 'Middle Left', 'popup-maker' )   => 'left center',
		__( 'Middle Center', 'popup-maker' ) => 'center center',
		__( 'Middle Right', 'popup-maker' )  => 'right center',
		__( 'Bottom Left', 'popup-maker' )   => 'left bottom',
		__( 'Bottom Center', 'popup-maker' ) => 'center bottom',
		__( 'Bottom Right', 'popup-maker' )  => 'right bottom',
		//__( 'Mouse', 'popup-maker' )			=> 'mouse',
	) );
}

Top ↑

User Contributed Notes User Contributed Notes

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