PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / text-highlight / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/text-highlight/block.json

131 lines 3.2 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/text-highlight",
5 "version": "1.0.0",
6 "title": "Text Highlight",
7 "category": "bkbg-content",
8 "icon": "editor-underline",
9 "description": "Animate a color marker / highlighter sweep behind specific words or phrases when they scroll into view.",
10 "keywords": [
11 "highlight",
12 "marker",
13 "underline",
14 "text",
15 "animate",
16 "scroll",
17 "emphasis",
18 "mark"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-text-highlight-editor",
22 "editorStyle": "bkbg-text-highlight-style",
23 "style": "bkbg-text-highlight-style",
24 "viewScript": "bkbg-text-highlight-frontend",
25 "supports": {
26 "html": false,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "text": {
34 "type": "string",
35 "default": "We help brands grow faster with smarter marketing."
36 },
37 "highlights": {
38 "type": "string",
39 "default": "grow faster, smarter marketing"
40 },
41 "tag": {
42 "type": "string",
43 "default": "h2"
44 },
45 "highlightStyle": {
46 "type": "string",
47 "default": "marker"
48 },
49 "highlightColor": {
50 "type": "string",
51 "default": "#fde68a"
52 },
53 "highlightOpacity": {
54 "type": "number",
55 "default": 100
56 },
57 "highlightRadius": {
58 "type": "number",
59 "default": 4
60 },
61 "highlightPadX": {
62 "type": "number",
63 "default": 6
64 },
65 "highlightPadY": {
66 "type": "number",
67 "default": 2
68 },
69 "lineThickness": {
70 "type": "number",
71 "default": 8
72 },
73 "linePosition": {
74 "type": "string",
75 "default": "bottom"
76 },
77 "animateOnScroll": {
78 "type": "boolean",
79 "default": true
80 },
81 "animationStyle": {
82 "type": "string",
83 "default": "sweep"
84 },
85 "animationDuration": {
86 "type": "number",
87 "default": 600
88 },
89 "animationDelay": {
90 "type": "number",
91 "default": 80
92 },
93 "threshold": {
94 "type": "number",
95 "default": 0.2
96 },
97 "repeat": {
98 "type": "boolean",
99 "default": false
100 },
101 "titleTypo": {
102 "type": "object",
103 "default": {}
104 },
105 "textAlign": {
106 "type": "string",
107 "default": "center"
108 },
109 "textColor": {
110 "type": "string",
111 "default": "#111827"
112 },
113 "bgColor": {
114 "type": "string",
115 "default": ""
116 },
117 "paddingTop": {
118 "type": "number",
119 "default": 48
120 },
121 "paddingBottom": {
122 "type": "number",
123 "default": 48
124 },
125 "maxWidth": {
126 "type": "number",
127 "default": 800
128 }
129 }
130 }
131