| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"name": "blockenberg/image-magnifier", |
| 4 |
"title": "Image Magnifier", |
| 5 |
"category": "bkbg-media", |
| 6 |
"icon": "search", |
| 7 |
"description": "Image with a zoom lens that follows the cursor on hover — perfect for product photography and detail shots.", |
| 8 |
"keywords": [ |
| 9 |
"magnifier", |
| 10 |
"zoom", |
| 11 |
"image", |
| 12 |
"lens", |
| 13 |
"hover", |
| 14 |
"product" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-image-magnifier-editor", |
| 18 |
"editorStyle": "bkbg-image-magnifier-style", |
| 19 |
"style": "bkbg-image-magnifier-style", |
| 20 |
"viewScript": "bkbg-image-magnifier-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true |
| 25 |
}, |
| 26 |
"attributes": { |
| 27 |
"imageUrl": { |
| 28 |
"type": "string", |
| 29 |
"default": "" |
| 30 |
}, |
| 31 |
"imageId": { |
| 32 |
"type": "number", |
| 33 |
"default": 0 |
| 34 |
}, |
| 35 |
"alt": { |
| 36 |
"type": "string", |
| 37 |
"default": "" |
| 38 |
}, |
| 39 |
"caption": { |
| 40 |
"type": "string", |
| 41 |
"default": "" |
| 42 |
}, |
| 43 |
"showCaption": { |
| 44 |
"type": "boolean", |
| 45 |
"default": false |
| 46 |
}, |
| 47 |
"captionColor": { |
| 48 |
"type": "string", |
| 49 |
"default": "#6b7280" |
| 50 |
}, |
| 51 |
"width": { |
| 52 |
"type": "number", |
| 53 |
"default": 600 |
| 54 |
}, |
| 55 |
"align": { |
| 56 |
"type": "string", |
| 57 |
"default": "center" |
| 58 |
}, |
| 59 |
"imageRadius": { |
| 60 |
"type": "number", |
| 61 |
"default": 8 |
| 62 |
}, |
| 63 |
"zoomFactor": { |
| 64 |
"type": "number", |
| 65 |
"default": 250 |
| 66 |
}, |
| 67 |
"lensSize": { |
| 68 |
"type": "number", |
| 69 |
"default": 150 |
| 70 |
}, |
| 71 |
"lensShape": { |
| 72 |
"type": "string", |
| 73 |
"default": "circle" |
| 74 |
}, |
| 75 |
"lensBorderColor": { |
| 76 |
"type": "string", |
| 77 |
"default": "#6c3fb5" |
| 78 |
}, |
| 79 |
"lensBorderWidth": { |
| 80 |
"type": "number", |
| 81 |
"default": 2 |
| 82 |
}, |
| 83 |
"lensShadow": { |
| 84 |
"type": "boolean", |
| 85 |
"default": true |
| 86 |
}, |
| 87 |
"effectType": { |
| 88 |
"type": "string", |
| 89 |
"default": "lens" |
| 90 |
}, |
| 91 |
"previewWidth": { |
| 92 |
"type": "number", |
| 93 |
"default": 300 |
| 94 |
}, |
| 95 |
"previewHeight": { |
| 96 |
"type": "number", |
| 97 |
"default": 300 |
| 98 |
}, |
| 99 |
"previewBorder": { |
| 100 |
"type": "string", |
| 101 |
"default": "#e5e7eb" |
| 102 |
}, |
| 103 |
"previewRadius": { |
| 104 |
"type": "number", |
| 105 |
"default": 8 |
| 106 |
}, |
| 107 |
"hint": { |
| 108 |
"type": "string", |
| 109 |
"default": "Hover to zoom" |
| 110 |
}, |
| 111 |
"showHint": { |
| 112 |
"type": "boolean", |
| 113 |
"default": true |
| 114 |
}, |
| 115 |
"hintColor": { |
| 116 |
"type": "string", |
| 117 |
"default": "#9ca3af" |
| 118 |
}, |
| 119 |
"captionFontSize": { |
| 120 |
"type": "number", |
| 121 |
"default": 13 |
| 122 |
}, |
| 123 |
"captionFontWeight": { |
| 124 |
"type": "number", |
| 125 |
"default": 400 |
| 126 |
}, |
| 127 |
"captionLineHeight": { |
| 128 |
"type": "number", |
| 129 |
"default": 1.4 |
| 130 |
}, |
| 131 |
"captionTypo": { |
| 132 |
"type": "object", |
| 133 |
"default": {} |
| 134 |
} |
| 135 |
} |
| 136 |
} |
| 137 |
|