# elementor/3.28.3/modules/floating-buttons/control/hover-animation-floating-buttons.php

Elementor Website Builder – more than just a page builder, version 3.28.3. 24 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.28.3/code/modules/floating-buttons/control/hover-animation-floating-buttons.php
- Raw: https://pluginprobe.com/plugins/elementor/3.28.3/raw/modules/floating-buttons/control/hover-animation-floating-buttons.php
- Modified: 2024-06-26T09:20:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.28.3/code/modules/floating-buttons/control/hover-animation-floating-buttons.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\FloatingButtons\Control;

use Elementor\Control_Hover_Animation;

class Hover_Animation_Floating_Buttons extends Control_Hover_Animation {

	const TYPE = 'hover_animation_contact_buttons';

	public function get_type() {
		return static::TYPE;
	}

	public static function get_animations() {
		return [
			'grow' => 'Grow',
			'pulse' => 'Pulse',
			'push' => 'Push',
			'float' => 'Float',
		];
	}
}

```
