block.json
3 years ago
view.asset.php
3 years ago
view.css
3 years ago
view.js
3 years ago
view.rtl.css
3 years ago
block.json
98 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "jetpack/slideshow", |
| 5 | "title": "Slideshow", |
| 6 | "description": "Display multiple images in sequential order.", |
| 7 | "keywords": [ "story", "image", "video", "gallery" ], |
| 8 | "version": "12.5.0", |
| 9 | "textdomain": "jetpack", |
| 10 | "category": "media", |
| 11 | "icon": "<svg viewBox='0 0 24 24' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path d='M21 8V19C21 20.1046 20.1057 21 19.0011 21C15.8975 21 9.87435 21 6 21' fill='none' stroke='currentColor' strokeWidth='1.5'/><rect x='3.75' y='3.75' width='13.5' height='13.5' rx='0.875' fill='none' stroke='currentColor' strokeWidth='1.5'/><path d='M9 14L12 11L9 8' fill='none' stroke='currentColor' strokeWidth='1.5' /></svg>", |
| 12 | "supports": { |
| 13 | "html": false, |
| 14 | "align": [ "center", "wide", "full" ] |
| 15 | }, |
| 16 | "attributes": { |
| 17 | "align": { |
| 18 | "default": "center", |
| 19 | "type": "string" |
| 20 | }, |
| 21 | "autoplay": { |
| 22 | "type": "boolean", |
| 23 | "default": false |
| 24 | }, |
| 25 | "delay": { |
| 26 | "type": "number", |
| 27 | "default": 3 |
| 28 | }, |
| 29 | "ids": { |
| 30 | "default": [], |
| 31 | "type": "array" |
| 32 | }, |
| 33 | "images": { |
| 34 | "type": "array", |
| 35 | "default": [], |
| 36 | "source": "query", |
| 37 | "selector": ".swiper-slide", |
| 38 | "query": { |
| 39 | "alt": { |
| 40 | "source": "attribute", |
| 41 | "selector": "img", |
| 42 | "attribute": "alt", |
| 43 | "default": "" |
| 44 | }, |
| 45 | "caption": { |
| 46 | "type": "string", |
| 47 | "source": "html", |
| 48 | "selector": "figcaption" |
| 49 | }, |
| 50 | "id": { |
| 51 | "source": "attribute", |
| 52 | "selector": "img", |
| 53 | "attribute": "data-id" |
| 54 | }, |
| 55 | "url": { |
| 56 | "source": "attribute", |
| 57 | "selector": "img", |
| 58 | "attribute": "src" |
| 59 | } |
| 60 | } |
| 61 | }, |
| 62 | "effect": { |
| 63 | "type": "string", |
| 64 | "default": "slide" |
| 65 | }, |
| 66 | "sizeSlug": { |
| 67 | "type": "string" |
| 68 | } |
| 69 | }, |
| 70 | "example": { |
| 71 | "align": "center", |
| 72 | "autoplay": true, |
| 73 | "ids": [ 22, 23 ], |
| 74 | "images": [ |
| 75 | { |
| 76 | "alt": "", |
| 77 | "caption": "", |
| 78 | "id": 22, |
| 79 | "url": "./slideshowExample1.png" |
| 80 | }, |
| 81 | { |
| 82 | "alt": "", |
| 83 | "caption": "", |
| 84 | "id": 23, |
| 85 | "url": "./slideshowExample2.png" |
| 86 | }, |
| 87 | { |
| 88 | "alt": "", |
| 89 | "caption": "", |
| 90 | "id": 23, |
| 91 | "url": "./slideshowExample3.png" |
| 92 | } |
| 93 | ], |
| 94 | "effect": "slide" |
| 95 | }, |
| 96 | "editorScript": "file:../editor.js" |
| 97 | } |
| 98 |