mirror of
https://gh.wpcy.net/https://github.com/elementor/elementor.git
synced 2026-04-20 12:23:54 +08:00
## PR Checklist <!-- Please check if your PR fulfills the following requirements: **Filling out the template is required.** Any pull request that does not include enough information to be reviewed in a timely manner may be closed at the maintainers' discretion. --> - [ ] The commit message follows our guidelines: https://github.com/elementor/elementor/blob/master/.github/CONTRIBUTING.md ## PR Type What kind of change does this PR introduce? <!-- Please check the one that applies to this PR using "x" with no spaces eg: [x]. --> - [ ] Bugfix - [ ] Feature - [ ] Code style update (formatting, local variables) - [ ] Refactoring (no functional changes, no api changes) - [ ] Build related changes - [ ] CI related changes - [ ] Documentation content changes - [ ] Other... Please describe: ## Summary This PR can be summarized in the following changelog entry: * ## Description An explanation of what is done in this PR * ## Test instructions This PR can be tested by following these steps: * ## Quality assurance - [ ] I have tested this code to the best of my abilities - [ ] I have added unittests to verify the code works as intended - [ ] Docs have been added / updated (for bug fixes / features) Fixes # --------- Co-authored-by: Hein van Vlastuin <heinvanvlastuin@gmail.com> Co-authored-by: ElementorBot <48412871+elementorbot@users.noreply.github.com>
110 lines
2.5 KiB
PHP
110 lines
2.5 KiB
PHP
<?php
|
|
namespace Elementor;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
/**
|
|
* Elementor exit animation control.
|
|
*
|
|
* A control for creating exit animation. Displays a select box
|
|
* with the available exit animation effects @see Control_Exit_Animation::get_animations() .
|
|
*
|
|
* @since 2.5.0
|
|
*/
|
|
class Control_Exit_Animation extends Control_Animation {
|
|
|
|
/**
|
|
* Get control type.
|
|
*
|
|
* Retrieve the animation control type.
|
|
*
|
|
* @since 2.5.0
|
|
* @access public
|
|
*
|
|
* @return string Control type.
|
|
*/
|
|
public function get_type() {
|
|
return 'exit_animation';
|
|
}
|
|
|
|
/**
|
|
* Get animations list.
|
|
*
|
|
* Retrieve the list of all the available animations.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @static
|
|
*
|
|
* @return array Control type.
|
|
*/
|
|
public static function get_animations() {
|
|
$additional_animations = [];
|
|
|
|
/**
|
|
* Exit animations.
|
|
*
|
|
* Filters the animations list displayed in the exit animations control.
|
|
*
|
|
* This hook can be used to register new animations in addition to the
|
|
* basic Elementor exit animations.
|
|
*
|
|
* @since 2.5.0
|
|
*
|
|
* @param array $additional_animations Additional animations array.
|
|
*/
|
|
$additional_animations = apply_filters( 'elementor/controls/exit-animations/additional_animations', $additional_animations );
|
|
|
|
return array_merge( static::get_default_animations(), $additional_animations );
|
|
}
|
|
|
|
public static function get_default_animations(): array {
|
|
return [
|
|
'Fading' => [
|
|
'fadeIn' => 'Fade Out',
|
|
'fadeInDown' => 'Fade Out Up',
|
|
'fadeInLeft' => 'Fade Out Left',
|
|
'fadeInRight' => 'Fade Out Right',
|
|
'fadeInUp' => 'Fade Out Down',
|
|
],
|
|
'Zooming' => [
|
|
'zoomIn' => 'Zoom Out',
|
|
'zoomInDown' => 'Zoom Out Up',
|
|
'zoomInLeft' => 'Zoom Out Left',
|
|
'zoomInRight' => 'Zoom Out Right',
|
|
'zoomInUp' => 'Zoom Out Down',
|
|
],
|
|
'Sliding' => [
|
|
'slideInDown' => 'Slide Out Up',
|
|
'slideInLeft' => 'Slide Out Left',
|
|
'slideInRight' => 'Slide Out Right',
|
|
'slideInUp' => 'Slide Out Down',
|
|
],
|
|
'Rotating' => [
|
|
'rotateIn' => 'Rotate Out',
|
|
'rotateInDownLeft' => 'Rotate Out Up Left',
|
|
'rotateInDownRight' => 'Rotate Out Up Right',
|
|
'rotateInUpRight' => 'Rotate Out Down Left',
|
|
'rotateInUpLeft' => 'Rotate Out Down Right',
|
|
],
|
|
'Light Speed' => [
|
|
'lightSpeedIn' => 'Light Speed Out',
|
|
],
|
|
'Specials' => [
|
|
'rollIn' => 'Roll Out',
|
|
],
|
|
];
|
|
}
|
|
|
|
public static function get_assets( $setting ) {
|
|
if ( ! $setting || 'none' === $setting ) {
|
|
return [];
|
|
}
|
|
|
|
return [
|
|
'styles' => [ 'e-animation-' . $setting ],
|
|
];
|
|
}
|
|
}
|