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 / scroll-to-top / block.json

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

97 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/scroll-to-top",
5 "title": "Scroll To Top",
6 "category": "bkbg-layout",
7 "icon": "arrow-up-alt2",
8 "description": "Fixed scroll-to-top button that appears after scrolling down the page.",
9 "keywords": [
10 "scroll",
11 "top",
12 "button",
13 "fixed",
14 "floating"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-scroll-to-top-editor",
18 "editorStyle": "bkbg-scroll-to-top-style",
19 "style": "bkbg-scroll-to-top-style",
20 "viewScript": "bkbg-scroll-to-top-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true
25 },
26 "attributes": {
27 "position": {
28 "type": "string",
29 "default": "bottom-right"
30 },
31 "offsetX": {
32 "type": "number",
33 "default": 24
34 },
35 "offsetY": {
36 "type": "number",
37 "default": 24
38 },
39 "scrollTrigger": {
40 "type": "number",
41 "default": 400
42 },
43 "icon": {
44 "type": "string",
45 "default": "arrow-up-alt2"
46 },
47 "label": {
48 "type": "string",
49 "default": ""
50 },
51 "showLabel": {
52 "type": "boolean",
53 "default": false
54 },
55 "btnBg": {
56 "type": "string",
57 "default": "#6c3fb5"
58 },
59 "btnColor": {
60 "type": "string",
61 "default": "#ffffff"
62 },
63 "btnRadius": {
64 "type": "number",
65 "default": 50
66 },
67 "btnSize": {
68 "type": "number",
69 "default": 48
70 },
71 "pulsing": {
72 "type": "boolean",
73 "default": false
74 },
75 "smooth": {
76 "type": "boolean",
77 "default": true
78 },
79 "shadow": {
80 "type": "boolean",
81 "default": true
82 },
83 "zIndex": {
84 "type": "number",
85 "default": 9990
86 },
87 "labelFontSize": {
88 "type": "number",
89 "default": 11
90 },
91 "labelFontWeight": {
92 "type": "number",
93 "default": 700
94 }
95 }
96 }
97