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 / styles.js

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

21 lines 418 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Background image styles.
3 */
4
5 const BackgroundImageStyles = (attributes) => {
6 const styles = {
7 backgroundImage: attributes.backgroundImgURL
8 ? `url(${attributes.backgroundImgURL})`
9 : undefined,
10 backgroundPosition: attributes.focalPoint
11 ? `${attributes.focalPoint.x * 100}% ${
12 attributes.focalPoint.y * 100
13 }%`
14 : undefined,
15 };
16
17 return styles;
18 };
19
20 export default BackgroundImageStyles;
21