PluginProbe
Genesis Blocks / trunk
Genesis Blocks vtrunk
3.1.11 trunk 1.0.0 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 3.0.0 3.0.1 3.1.0 3.1.1 3.1.10 All 32 releases
genesis-blocks / src / utils / components / background-image / attributes.js

attributes.js in Genesis Blocks trunk, at src/utils/components/background-image/attributes.js

31 lines 439 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Background image attributes.
3 */
4
5 const BackgroundAttributes = {
6 backgroundImgURL: {
7 type: 'string',
8 },
9 backgroundDimRatio: {
10 type: 'number',
11 default: 100,
12 },
13 backgroundRepeat: {
14 type: 'string',
15 default: 'no-repeat',
16 },
17 backgroundSize: {
18 type: 'string',
19 default: 'cover',
20 },
21 hasParallax: {
22 type: 'boolean',
23 default: false,
24 },
25 focalPoint: {
26 type: 'object',
27 },
28 };
29
30 export default BackgroundAttributes;
31