| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/mouse-trail", |
| 5 |
"title": "Mouse Trail", |
| 6 |
"category": "bkbg-effects", |
| 7 |
"icon": "admin-customizer", |
| 8 |
"description": "Add a magical cursor trail effect to your page — sparkles, dots, comets, ribbons, stars, or fire. Works globally across the page or scoped to a specific section. No dependencies, pure canvas.", |
| 9 |
"keywords": [ |
| 10 |
"cursor", |
| 11 |
"mouse", |
| 12 |
"trail", |
| 13 |
"sparkle", |
| 14 |
"effect", |
| 15 |
"animation", |
| 16 |
"interactive", |
| 17 |
"particles" |
| 18 |
], |
| 19 |
"textdomain": "blockenberg", |
| 20 |
"editorScript": "bkbg-mouse-trail-editor", |
| 21 |
"style": "bkbg-mouse-trail-style", |
| 22 |
"viewScript": "bkbg-mouse-trail-frontend", |
| 23 |
"supports": { |
| 24 |
"html": false, |
| 25 |
"anchor": true, |
| 26 |
"className": true, |
| 27 |
"align": [ |
| 28 |
"wide", |
| 29 |
"full" |
| 30 |
] |
| 31 |
}, |
| 32 |
"attributes": { |
| 33 |
"trailStyle": { |
| 34 |
"type": "string", |
| 35 |
"default": "sparkle" |
| 36 |
}, |
| 37 |
"particleCount": { |
| 38 |
"type": "number", |
| 39 |
"default": 30 |
| 40 |
}, |
| 41 |
"particleSize": { |
| 42 |
"type": "number", |
| 43 |
"default": 8 |
| 44 |
}, |
| 45 |
"trailFade": { |
| 46 |
"type": "number", |
| 47 |
"default": 60 |
| 48 |
}, |
| 49 |
"spreadRadius": { |
| 50 |
"type": "number", |
| 51 |
"default": 20 |
| 52 |
}, |
| 53 |
"gravity": { |
| 54 |
"type": "number", |
| 55 |
"default": 0.15 |
| 56 |
}, |
| 57 |
"colorMode": { |
| 58 |
"type": "string", |
| 59 |
"default": "gradient" |
| 60 |
}, |
| 61 |
"color1": { |
| 62 |
"type": "string", |
| 63 |
"default": "#f59e0b" |
| 64 |
}, |
| 65 |
"color2": { |
| 66 |
"type": "string", |
| 67 |
"default": "#ec4899" |
| 68 |
}, |
| 69 |
"glowEffect": { |
| 70 |
"type": "boolean", |
| 71 |
"default": true |
| 72 |
}, |
| 73 |
"glowSize": { |
| 74 |
"type": "number", |
| 75 |
"default": 12 |
| 76 |
}, |
| 77 |
"scope": { |
| 78 |
"type": "string", |
| 79 |
"default": "page" |
| 80 |
}, |
| 81 |
"showOnMobile": { |
| 82 |
"type": "boolean", |
| 83 |
"default": false |
| 84 |
}, |
| 85 |
"hideOnClick": { |
| 86 |
"type": "boolean", |
| 87 |
"default": false |
| 88 |
}, |
| 89 |
"burstOnClick": { |
| 90 |
"type": "boolean", |
| 91 |
"default": true |
| 92 |
}, |
| 93 |
"burstCount": { |
| 94 |
"type": "number", |
| 95 |
"default": 20 |
| 96 |
}, |
| 97 |
"mixBlend": { |
| 98 |
"type": "string", |
| 99 |
"default": "normal" |
| 100 |
}, |
| 101 |
"previewText": { |
| 102 |
"type": "string", |
| 103 |
"default": "Move your cursor here ✨" |
| 104 |
}, |
| 105 |
"sectionBg": { |
| 106 |
"type": "string", |
| 107 |
"default": "#1e1b4b" |
| 108 |
}, |
| 109 |
"sectionHeight": { |
| 110 |
"type": "number", |
| 111 |
"default": 200 |
| 112 |
}, |
| 113 |
"sectionRadius": { |
| 114 |
"type": "number", |
| 115 |
"default": 16 |
| 116 |
} |
| 117 |
} |
| 118 |
} |
| 119 |
|