PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / sticky-video / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/sticky-video/block.json

157 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/sticky-video",
5 "title": "Sticky Video",
6 "category": "bkbg-media",
7 "description": "Video player that minimises into a floating corner player when scrolled past, with close and restore controls.",
8 "keywords": [
9 "video",
10 "sticky",
11 "floating",
12 "pip",
13 "player",
14 "embed",
15 "youtube",
16 "vimeo"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-sticky-video-editor",
20 "style": "bkbg-sticky-video-style",
21 "viewScript": "bkbg-sticky-video-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "videoUrl": {
33 "type": "string",
34 "default": ""
35 },
36 "videoType": {
37 "type": "string",
38 "default": "youtube"
39 },
40 "posterUrl": {
41 "type": "string",
42 "default": ""
43 },
44 "title": {
45 "type": "string",
46 "default": "Watch our video"
47 },
48 "showTitle": {
49 "type": "boolean",
50 "default": true
51 },
52 "subtitle": {
53 "type": "string",
54 "default": ""
55 },
56 "autoplay": {
57 "type": "boolean",
58 "default": false
59 },
60 "muted": {
61 "type": "boolean",
62 "default": false
63 },
64 "loop": {
65 "type": "boolean",
66 "default": false
67 },
68 "controls": {
69 "type": "boolean",
70 "default": true
71 },
72 "aspectRatio": {
73 "type": "string",
74 "default": "16:9"
75 },
76 "borderRadius": {
77 "type": "number",
78 "default": 16
79 },
80 "stickyEnabled": {
81 "type": "boolean",
82 "default": true
83 },
84 "stickyCorner": {
85 "type": "string",
86 "default": "bottom-right"
87 },
88 "stickyWidth": {
89 "type": "number",
90 "default": 320
91 },
92 "stickyOffset": {
93 "type": "number",
94 "default": 24
95 },
96 "stickyRadius": {
97 "type": "number",
98 "default": 12
99 },
100 "stickyOnPlay": {
101 "type": "boolean",
102 "default": false
103 },
104 "showOverlayPlay": {
105 "type": "boolean",
106 "default": true
107 },
108 "overlayBg": {
109 "type": "string",
110 "default": "rgba(0,0,0,0.35)"
111 },
112 "overlayColor": {
113 "type": "string",
114 "default": "#ffffff"
115 },
116 "stickyBg": {
117 "type": "string",
118 "default": "#1e293b"
119 },
120 "sectionBg": {
121 "type": "string",
122 "default": ""
123 },
124 "titleSize": {
125 "type": "number",
126 "default": 16
127 },
128 "subtitleSize": {
129 "type": "number",
130 "default": 13
131 },
132 "titleFontWeight": {
133 "type": "string",
134 "default": "700"
135 },
136 "subtitleFontWeight": {
137 "type": "string",
138 "default": "400"
139 },
140 "titleLineHeight": {
141 "type": "number",
142 "default": 1.2
143 },
144 "subtitleLineHeight": {
145 "type": "number",
146 "default": 1.5
147 },
148 "titleTypo": {
149 "type": "object",
150 "default": {}
151 },
152 "subtitleTypo": {
153 "type": "object",
154 "default": {}
155 }
156 }
157 }