| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/matrix-rain", |
| 5 |
"title": "Matrix Rain", |
| 6 |
"category": "bkbg-effects", |
| 7 |
"icon": "editor-code", |
| 8 |
"description": "Canvas-rendered Matrix-style digital rain with falling character columns. Fully customizable character set, colors, speed and overlay content.", |
| 9 |
"keywords": [ |
| 10 |
"matrix", |
| 11 |
"rain", |
| 12 |
"code", |
| 13 |
"digital", |
| 14 |
"falling", |
| 15 |
"characters", |
| 16 |
"canvas", |
| 17 |
"cyberpunk", |
| 18 |
"effect", |
| 19 |
"background" |
| 20 |
], |
| 21 |
"textdomain": "blockenberg", |
| 22 |
"editorScript": "bkbg-matrix-rain-editor", |
| 23 |
"style": "bkbg-matrix-rain-style", |
| 24 |
"viewScript": "bkbg-matrix-rain-frontend", |
| 25 |
"supports": { |
| 26 |
"html": false, |
| 27 |
"anchor": true, |
| 28 |
"className": true, |
| 29 |
"align": [ |
| 30 |
"wide", |
| 31 |
"full" |
| 32 |
] |
| 33 |
}, |
| 34 |
"attributes": { |
| 35 |
"height": { |
| 36 |
"type": "number", |
| 37 |
"default": 400 |
| 38 |
}, |
| 39 |
"charSet": { |
| 40 |
"type": "string", |
| 41 |
"default": "matrix" |
| 42 |
}, |
| 43 |
"customChars": { |
| 44 |
"type": "string", |
| 45 |
"default": "01" |
| 46 |
}, |
| 47 |
"fontSize": { |
| 48 |
"type": "number", |
| 49 |
"default": 16 |
| 50 |
}, |
| 51 |
"speed": { |
| 52 |
"type": "number", |
| 53 |
"default": 50 |
| 54 |
}, |
| 55 |
"density": { |
| 56 |
"type": "number", |
| 57 |
"default": 100 |
| 58 |
}, |
| 59 |
"colorStyle": { |
| 60 |
"type": "string", |
| 61 |
"default": "classic-green" |
| 62 |
}, |
| 63 |
"primaryColor": { |
| 64 |
"type": "string", |
| 65 |
"default": "#00ff41" |
| 66 |
}, |
| 67 |
"headColor": { |
| 68 |
"type": "string", |
| 69 |
"default": "#ffffff" |
| 70 |
}, |
| 71 |
"bgColor": { |
| 72 |
"type": "string", |
| 73 |
"default": "#000000" |
| 74 |
}, |
| 75 |
"bgOpacity": { |
| 76 |
"type": "number", |
| 77 |
"default": 8 |
| 78 |
}, |
| 79 |
"fadeLength": { |
| 80 |
"type": "number", |
| 81 |
"default": 20 |
| 82 |
}, |
| 83 |
"showOverlay": { |
| 84 |
"type": "boolean", |
| 85 |
"default": true |
| 86 |
}, |
| 87 |
"overlayText": { |
| 88 |
"type": "string", |
| 89 |
"default": "THE MATRIX" |
| 90 |
}, |
| 91 |
"overlaySubtext": { |
| 92 |
"type": "string", |
| 93 |
"default": "Follow the white rabbit." |
| 94 |
}, |
| 95 |
"overlayTextColor": { |
| 96 |
"type": "string", |
| 97 |
"default": "#00ff41" |
| 98 |
}, |
| 99 |
"overlayFontSize": { |
| 100 |
"type": "number", |
| 101 |
"default": 48 |
| 102 |
}, |
| 103 |
"overlayTypo": { |
| 104 |
"type": "object", |
| 105 |
"default": {} |
| 106 |
}, |
| 107 |
"subtextTypo": { |
| 108 |
"type": "object", |
| 109 |
"default": {} |
| 110 |
}, |
| 111 |
"overlayBg": { |
| 112 |
"type": "string", |
| 113 |
"default": "rgba(0,0,0,0.35)" |
| 114 |
}, |
| 115 |
"clickToPause": { |
| 116 |
"type": "boolean", |
| 117 |
"default": true |
| 118 |
}, |
| 119 |
"pauseOnHover": { |
| 120 |
"type": "boolean", |
| 121 |
"default": false |
| 122 |
}, |
| 123 |
"glowEffect": { |
| 124 |
"type": "boolean", |
| 125 |
"default": true |
| 126 |
}, |
| 127 |
"randomStart": { |
| 128 |
"type": "boolean", |
| 129 |
"default": true |
| 130 |
} |
| 131 |
} |
| 132 |
} |
| 133 |
|