| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"name": "blockenberg/background-video", |
| 4 |
"title": "Background Video", |
| 5 |
"category": "bkbg-media", |
| 6 |
"icon": "format-video", |
| 7 |
"description": "A looping autoplay background video section with overlay and InnerBlocks content — distinct from video players or popups.", |
| 8 |
"keywords": [ |
| 9 |
"video", |
| 10 |
"background", |
| 11 |
"loop", |
| 12 |
"hero", |
| 13 |
"section", |
| 14 |
"youtube", |
| 15 |
"vimeo", |
| 16 |
"cinematic" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-background-video-editor", |
| 20 |
"editorStyle": "bkbg-background-video-style", |
| 21 |
"style": "bkbg-background-video-style", |
| 22 |
"viewScript": "bkbg-background-video-frontend", |
| 23 |
"supports": { |
| 24 |
"html": false, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"videoType": { |
| 32 |
"type": "string", |
| 33 |
"default": "hosted" |
| 34 |
}, |
| 35 |
"videoUrl": { |
| 36 |
"type": "string", |
| 37 |
"default": "" |
| 38 |
}, |
| 39 |
"videoId": { |
| 40 |
"type": "number", |
| 41 |
"default": 0 |
| 42 |
}, |
| 43 |
"youtubeId": { |
| 44 |
"type": "string", |
| 45 |
"default": "" |
| 46 |
}, |
| 47 |
"vimeoId": { |
| 48 |
"type": "string", |
| 49 |
"default": "" |
| 50 |
}, |
| 51 |
"posterUrl": { |
| 52 |
"type": "string", |
| 53 |
"default": "" |
| 54 |
}, |
| 55 |
"posterId": { |
| 56 |
"type": "number", |
| 57 |
"default": 0 |
| 58 |
}, |
| 59 |
"posterAlt": { |
| 60 |
"type": "string", |
| 61 |
"default": "" |
| 62 |
}, |
| 63 |
"videoLoop": { |
| 64 |
"type": "boolean", |
| 65 |
"default": true |
| 66 |
}, |
| 67 |
"playOnlyInView": { |
| 68 |
"type": "boolean", |
| 69 |
"default": true |
| 70 |
}, |
| 71 |
"pauseOnHover": { |
| 72 |
"type": "boolean", |
| 73 |
"default": false |
| 74 |
}, |
| 75 |
"playbackRate": { |
| 76 |
"type": "number", |
| 77 |
"default": 1 |
| 78 |
}, |
| 79 |
"overlayColor": { |
| 80 |
"type": "string", |
| 81 |
"default": "#000000" |
| 82 |
}, |
| 83 |
"overlayOpacity": { |
| 84 |
"type": "number", |
| 85 |
"default": 45 |
| 86 |
}, |
| 87 |
"overlayGradient": { |
| 88 |
"type": "boolean", |
| 89 |
"default": false |
| 90 |
}, |
| 91 |
"overlayGradientStart": { |
| 92 |
"type": "string", |
| 93 |
"default": "#000000" |
| 94 |
}, |
| 95 |
"overlayGradientEnd": { |
| 96 |
"type": "string", |
| 97 |
"default": "transparent" |
| 98 |
}, |
| 99 |
"overlayGradientDir": { |
| 100 |
"type": "string", |
| 101 |
"default": "to bottom" |
| 102 |
}, |
| 103 |
"minHeight": { |
| 104 |
"type": "number", |
| 105 |
"default": 600 |
| 106 |
}, |
| 107 |
"paddingTop": { |
| 108 |
"type": "number", |
| 109 |
"default": 80 |
| 110 |
}, |
| 111 |
"paddingBottom": { |
| 112 |
"type": "number", |
| 113 |
"default": 80 |
| 114 |
}, |
| 115 |
"paddingLeft": { |
| 116 |
"type": "number", |
| 117 |
"default": 24 |
| 118 |
}, |
| 119 |
"paddingRight": { |
| 120 |
"type": "number", |
| 121 |
"default": 24 |
| 122 |
}, |
| 123 |
"contentAlign": { |
| 124 |
"type": "string", |
| 125 |
"default": "center" |
| 126 |
}, |
| 127 |
"contentVAlign": { |
| 128 |
"type": "string", |
| 129 |
"default": "center" |
| 130 |
}, |
| 131 |
"contentMaxWidth": { |
| 132 |
"type": "number", |
| 133 |
"default": 860 |
| 134 |
}, |
| 135 |
"textColor": { |
| 136 |
"type": "string", |
| 137 |
"default": "#ffffff" |
| 138 |
}, |
| 139 |
"borderRadius": { |
| 140 |
"type": "number", |
| 141 |
"default": 0 |
| 142 |
}, |
| 143 |
"objectFit": { |
| 144 |
"type": "string", |
| 145 |
"default": "cover" |
| 146 |
}, |
| 147 |
"objectPosition": { |
| 148 |
"type": "string", |
| 149 |
"default": "center center" |
| 150 |
} |
| 151 |
} |
| 152 |
} |
| 153 |
|