# ghostkit/3.3.3/gutenberg/extend/constants.js

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.3.3. 96 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/extend/constants.js
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/extend/constants.js
- Modified: 2024-02-18T18:40:24+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/ghostkit/3.3.3/code/gutenberg/extend/constants.js#L10-L20`.

```javascript
import { __ } from '@wordpress/i18n';

export const EXTENSIONS = {
	effects: {
		label: __('Effects', 'ghostkit'),
		attributes: ['effects'],
	},
	position: {
		label: __('Position', 'ghostkit'),
		styles: [
			'position',
			'top',
			'right',
			'bottom',
			'left',
			'width',
			'height',
			'min-width',
			'min-height',
			'max-width',
			'max-height',
			'z-index',
		],
		responsive: true,
		selectors: [''],
	},
	spacings: {
		label: __('Spacings', 'ghostkit'),
		styles: [
			'padding-top',
			'padding-right',
			'padding-bottom',
			'padding-left',
			'margin-top',
			'margin-right',
			'margin-bottom',
			'margin-left',
		],
		responsive: true,
		selectors: [''],
	},
	frame: {
		label: __('Frame', 'ghostkit'),
		styles: [
			'border-style',
			'border-width',
			'border-color',
			'border-top-left-radius',
			'border-top-right-radius',
			'border-bottom-left-radius',
			'border-bottom-right-radius',
			'box-shadow',
		],
		responsive: true,
		selectors: ['', '&:hover'],
	},
	transform: {
		label: __('Transform', 'ghostkit'),
		styles: [
			'--gkt-transform-perspective',
			'--gkt-transform-x',
			'--gkt-transform-y',
			'--gkt-transform-scale',
			'--gkt-transform-rotate',
			'--gkt-transform-rotate-x',
			'--gkt-transform-rotate-y',
			'--gkt-transform-rotate-z',
			'--gkt-transform-skew-x',
			'--gkt-transform-skew-y',
			'--gkt-transform-origin',
		],
		responsive: true,
		selectors: ['', '&:hover'],
	},
	customCSS: {
		label: __('Custom CSS', 'ghostkit'),
		styles: [
			'opacity',
			'overflow-x',
			'overflow-y',
			'cursor',
			'user-select',
			'clip-path',
			'custom',

			// Pro.
			'transition-property',
			'transition-duration',
			'transition-delay',
			'transition-timing-function',
		],
		responsive: true,
		selectors: [''],
	},
};

```
