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 / interactive-image-sheen / block.json

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

97 lines 2.4 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/interactive-image-sheen",
5 "title": "Interactive Image Sheen",
6 "description": "An image card with a glossy light sheen that follows the mouse cursor, giving a premium holographic feel.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-interactive-image-sheen-editor",
10 "style": "bkbg-interactive-image-sheen-style",
11 "viewScript": "bkbg-interactive-image-sheen-frontend",
12 "icon": "visibility",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "imageUrl": {
24 "type": "string",
25 "default": ""
26 },
27 "imageAlt": {
28 "type": "string",
29 "default": ""
30 },
31 "imageWidth": {
32 "type": "integer",
33 "default": 480
34 },
35 "imageHeight": {
36 "type": "integer",
37 "default": 320
38 },
39 "imageRadius": {
40 "type": "integer",
41 "default": 20
42 },
43 "sheenColor": {
44 "type": "string",
45 "default": "rgba(255,255,255,0.35)"
46 },
47 "sheenSize": {
48 "type": "integer",
49 "default": 60
50 },
51 "sheenBlur": {
52 "type": "integer",
53 "default": 40
54 },
55 "tiltStrength": {
56 "type": "integer",
57 "default": 12
58 },
59 "tiltShadow": {
60 "type": "boolean",
61 "default": true
62 },
63 "shadowColor": {
64 "type": "string",
65 "default": "rgba(99,102,241,0.4)"
66 },
67 "showCaption": {
68 "type": "boolean",
69 "default": false
70 },
71 "caption": {
72 "type": "string",
73 "default": ""
74 },
75 "captionSize": {
76 "type": "integer",
77 "default": 14
78 },
79 "captionColor": {
80 "type": "string",
81 "default": "#64748b"
82 },
83 "align2": {
84 "type": "string",
85 "default": "center"
86 },
87 "bgColor": {
88 "type": "string",
89 "default": ""
90 },
91 "captionTypo": {
92 "type": "object",
93 "default": {}
94 }
95 }
96 }
97