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 / floating-cta / block.json

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

122 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/floating-cta",
5 "title": "Floating CTA",
6 "category": "bkbg-marketing",
7 "icon": "megaphone",
8 "description": "Fixed-position floating call-to-action button that sticks during scroll. Configurable position, icon, label, and trigger delay.",
9 "keywords": [
10 "floating",
11 "fixed",
12 "cta",
13 "button",
14 "sticky",
15 "call to action"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-floating-cta-editor",
19 "editorStyle": "bkbg-floating-cta-style",
20 "style": "bkbg-floating-cta-style",
21 "viewScript": "bkbg-floating-cta-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true
26 },
27 "attributes": {
28 "label": {
29 "type": "string",
30 "default": "Get a Quote"
31 },
32 "url": {
33 "type": "string",
34 "default": "#contact"
35 },
36 "openInNew": {
37 "type": "boolean",
38 "default": false
39 },
40 "icon": {
41 "type": "string",
42 "default": "megaphone"
43 },
44 "showIcon": {
45 "type": "boolean",
46 "default": true
47 },
48 "showLabel": {
49 "type": "boolean",
50 "default": true
51 },
52 "position": {
53 "type": "string",
54 "default": "bottom-right"
55 },
56 "offsetX": {
57 "type": "number",
58 "default": 24
59 },
60 "offsetY": {
61 "type": "number",
62 "default": 24
63 },
64 "scrollTrigger": {
65 "type": "number",
66 "default": 300
67 },
68 "showDismiss": {
69 "type": "boolean",
70 "default": false
71 },
72 "pulsing": {
73 "type": "boolean",
74 "default": true
75 },
76 "btnBg": {
77 "type": "string",
78 "default": "#6c3fb5"
79 },
80 "btnColor": {
81 "type": "string",
82 "default": "#ffffff"
83 },
84 "btnRadius": {
85 "type": "number",
86 "default": 50
87 },
88 "btnShadow": {
89 "type": "boolean",
90 "default": true
91 },
92 "fontSize": {
93 "type": "number",
94 "default": 15
95 },
96 "fontWeight": {
97 "type": "number",
98 "default": 700
99 },
100 "typoBtn": {
101 "type": "object",
102 "default": {}
103 },
104 "iconSize": {
105 "type": "number",
106 "default": 20
107 },
108 "paddingX": {
109 "type": "number",
110 "default": 20
111 },
112 "paddingY": {
113 "type": "number",
114 "default": 14
115 },
116 "zIndex": {
117 "type": "number",
118 "default": 9999
119 }
120 }
121 }
122