PluginProbe
AI Builder – Generate pages, blocks, images & translate with AI / 2.7.2
AI Builder – Generate pages, blocks, images & translate with AI v2.7.2
2.7.10 2.7.9 2.7.8 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.3.10 All 122 releases
ai-builder / assets / JSON-Blocks / audio.js

audio.js in AI Builder – Generate pages, blocks, images & translate with AI 2.7.2, at assets/JSON-Blocks/audio.js

57 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const audioBlocks = [
2 {
3 id: "audio-01",
4 jsonBlocks: {
5 blockName: "core/group",
6 attrs: {
7 align: "center",
8 className: "audio-container",
9 style: {
10 color: {
11 background: "#ffffff",
12 },
13 },
14 },
15 innerBlocks: [
16 {
17 blockName: "core/heading",
18 attrs: {
19 content: "Listen to Our Audio",
20 level: 2,
21 className: "audio-title",
22 textAlign: "center",
23 },
24 },
25 {
26 blockName: "core/paragraph",
27 attrs: {
28 content: "Enjoy our latest audio content",
29 className: "audio-description ai-text-block",
30 align: "center",
31 },
32 },
33 {
34 blockName: "core/audio",
35 attrs: {
36 className: "audio-player",
37 controls: true,
38 autoplay: false,
39 loop: false,
40 preload: "metadata",
41 },
42 },
43 {
44 blockName: "core/paragraph",
45 attrs: {
46 content: "Click the play button to start listening",
47 className: "audio-info ai-text-block",
48 align: "center",
49 },
50 },
51 ],
52 },
53 },
54 ];
55
56 export default audioBlocks;
57