PluginProbe
AI Builder – Generate pages, blocks, images & translate with AI / 2.2.2
AI Builder – Generate pages, blocks, images & translate with AI v2.2.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 / video.js

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

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