| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/hover-card", |
| 5 |
"title": "Hover Card", |
| 6 |
"category": "bkbg-effects", |
| 7 |
"icon": "images-alt", |
| 8 |
"description": "Card that reveals hidden content (overlay) when hovered with customizable direction and animation.", |
| 9 |
"keywords": [ |
| 10 |
"hover", |
| 11 |
"card", |
| 12 |
"overlay", |
| 13 |
"reveal", |
| 14 |
"effect", |
| 15 |
"image" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-hover-card-editor", |
| 19 |
"editorStyle": "bkbg-hover-card-style", |
| 20 |
"style": "bkbg-hover-card-style", |
| 21 |
"viewScript": "bkbg-hover-card-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [] |
| 27 |
}, |
| 28 |
"attributes": { |
| 29 |
"imageUrl": { |
| 30 |
"type": "string", |
| 31 |
"default": "" |
| 32 |
}, |
| 33 |
"imageId": { |
| 34 |
"type": "number", |
| 35 |
"default": 0 |
| 36 |
}, |
| 37 |
"imageAlt": { |
| 38 |
"type": "string", |
| 39 |
"default": "" |
| 40 |
}, |
| 41 |
"bgColor": { |
| 42 |
"type": "string", |
| 43 |
"default": "#1e0a3c" |
| 44 |
}, |
| 45 |
"revealDirection": { |
| 46 |
"type": "string", |
| 47 |
"default": "bottom" |
| 48 |
}, |
| 49 |
"overlayBg": { |
| 50 |
"type": "string", |
| 51 |
"default": "rgba(108,63,181,0.92)" |
| 52 |
}, |
| 53 |
"heading": { |
| 54 |
"type": "string", |
| 55 |
"default": "Card Title" |
| 56 |
}, |
| 57 |
"text": { |
| 58 |
"type": "string", |
| 59 |
"default": "Hover reveal description goes here." |
| 60 |
}, |
| 61 |
"btnLabel": { |
| 62 |
"type": "string", |
| 63 |
"default": "Learn More" |
| 64 |
}, |
| 65 |
"btnUrl": { |
| 66 |
"type": "string", |
| 67 |
"default": "#" |
| 68 |
}, |
| 69 |
"showBtn": { |
| 70 |
"type": "boolean", |
| 71 |
"default": true |
| 72 |
}, |
| 73 |
"textColor": { |
| 74 |
"type": "string", |
| 75 |
"default": "#ffffff" |
| 76 |
}, |
| 77 |
"duration": { |
| 78 |
"type": "number", |
| 79 |
"default": 300 |
| 80 |
}, |
| 81 |
"cardWidth": { |
| 82 |
"type": "number", |
| 83 |
"default": 300 |
| 84 |
}, |
| 85 |
"cardHeight": { |
| 86 |
"type": "number", |
| 87 |
"default": 220 |
| 88 |
}, |
| 89 |
"borderRadius": { |
| 90 |
"type": "number", |
| 91 |
"default": 12 |
| 92 |
}, |
| 93 |
"headingSz": { |
| 94 |
"type": "number", |
| 95 |
"default": 18 |
| 96 |
}, |
| 97 |
"headingFontWeight": { |
| 98 |
"type": "string", |
| 99 |
"default": "700" |
| 100 |
}, |
| 101 |
"headingLineHeight": { |
| 102 |
"type": "number", |
| 103 |
"default": 1.3 |
| 104 |
}, |
| 105 |
"textSz": { |
| 106 |
"type": "number", |
| 107 |
"default": 14 |
| 108 |
}, |
| 109 |
"textFontWeight": { |
| 110 |
"type": "string", |
| 111 |
"default": "400" |
| 112 |
}, |
| 113 |
"textLineHeight": { |
| 114 |
"type": "number", |
| 115 |
"default": 1.6 |
| 116 |
}, |
| 117 |
"headingTypo": { |
| 118 |
"type": "object", |
| 119 |
"default": {} |
| 120 |
}, |
| 121 |
"textTypo": { |
| 122 |
"type": "object", |
| 123 |
"default": {} |
| 124 |
} |
| 125 |
} |
| 126 |
} |
| 127 |
|