823 lines
60 KiB
Plaintext
823 lines
60 KiB
Plaintext
// Generated by scripts/generate-showcase.mjs. Do not edit directly.
|
|
page CarouselDetail {
|
|
layout = "showcase"
|
|
state playground_size = ctx.url.searchParams.get("pg_size") ?? "default"
|
|
state playground_color = ctx.url.searchParams.get("pg_color") ?? "primary"
|
|
state playground_title = ctx.url.searchParams.get("pg_title") ?? ""
|
|
state playground_description = ctx.url.searchParams.get("pg_description") ?? ""
|
|
state playground_items = ctx.url.searchParams.get("pg_items") ?? "[\n {\n \"label\": \"First slide\",\n \"title\": \"First slide\",\n \"description\": \"Introduce the collection with a concise, focused message.\"\n },\n {\n \"label\": \"Second slide\",\n \"title\": \"Second slide\",\n \"description\": \"Move through content using buttons, pagination, keyboard, or touch.\"\n },\n {\n \"label\": \"Third slide\",\n \"title\": \"Third slide\",\n \"description\": \"Every interaction exposes useful public lifecycle and navigation events.\"\n },\n {\n \"label\": \"Fourth slide\",\n \"title\": \"Fourth slide\",\n \"description\": \"Flexible for larger collections.\"\n },\n {\n \"label\": \"Fifth slide\",\n \"title\": \"Fifth slide\",\n \"description\": \"Responsive at every viewport.\"\n },\n {\n \"label\": \"Sixth slide\",\n \"title\": \"Sixth slide\",\n \"description\": \"Built with accessible semantics.\"\n }\n]"
|
|
state playground_activeIndex = ctx.url.searchParams.get("pg_activeIndex") ?? "0"
|
|
state playground_slidesPerView = ctx.url.searchParams.get("pg_slidesPerView") ?? "1"
|
|
state playground_gap = ctx.url.searchParams.get("pg_gap") ?? "0.75rem"
|
|
state playground_showPagination = ctx.url.searchParams.get("pg_showPagination") ?? "false"
|
|
state playground_isAutoPlay = ctx.url.searchParams.get("pg_isAutoPlay") ?? "false"
|
|
state playground_autoplayInterval = ctx.url.searchParams.get("pg_autoplayInterval") ?? "4000"
|
|
state playground_isInfiniteLoop = ctx.url.searchParams.get("pg_isInfiniteLoop") ?? "false"
|
|
state playground_isRTL = ctx.url.searchParams.get("pg_isRTL") ?? "false"
|
|
state playground_isCentered = ctx.url.searchParams.get("pg_isCentered") ?? "false"
|
|
state playground_isDraggable = ctx.url.searchParams.get("pg_isDraggable") ?? "false"
|
|
state playground_isAutoHeight = ctx.url.searchParams.get("pg_isAutoHeight") ?? "false"
|
|
state playground_isSnap = ctx.url.searchParams.get("pg_isSnap") ?? "false"
|
|
state playground_showCounter = ctx.url.searchParams.get("pg_showCounter") ?? "false"
|
|
state playground_thumbnails = ctx.url.searchParams.get("pg_thumbnails") ?? "none"
|
|
state playground_ariaLabel = ctx.url.searchParams.get("pg_ariaLabel") ?? "Basic usage"
|
|
state playground_variant = ctx.url.searchParams.get("pg_variant") ?? "default"
|
|
state playground_class = ctx.url.searchParams.get("pg_class") ?? ""
|
|
seo {
|
|
title = "Carousel"
|
|
description = "Theme-aware, responsive carousel component."
|
|
}
|
|
view {
|
|
<nav class="docs-breadcrumbs" aria-label="Breadcrumb">
|
|
<a href="/">Components</a><span aria-hidden="true">/</span><a href="/base">Base</a><span aria-hidden="true">/</span><span>Carousel</span>
|
|
</nav>
|
|
<header class="detail-hero">
|
|
<div class="detail-hero-copy">
|
|
<span class="showcase-eyebrow">Base component</span>
|
|
<h1>Carousel</h1>
|
|
<p>Theme-aware, responsive carousel component.</p>
|
|
<div class="detail-badges"><span>22 props</span><span>1 slots</span><span>10 events</span><span>Theme ready</span><span>Responsive</span></div>
|
|
</div>
|
|
<div class="detail-hero-icon"><span class="icon-[lucide--component] size-10" aria-hidden="true"></span></div>
|
|
</header>
|
|
<section id="playground" class="detail-section playground-section" data-playground data-playground-component="Carousel" data-playground-public-tag="true" data-playground-has-slot="true">
|
|
<div class="detail-section-heading"><span>Interactive playground</span><h2>Configure Carousel</h2><p>Change any prop and inspect the server-rendered component immediately.</p></div>
|
|
<div class="playground-workbench">
|
|
<div class="playground-preview">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="playground-preview-source" data-playground-preview><div data-component="Carousel" size="{playground_size}" color="{playground_color}" title="{playground_title}" description="{playground_description}" items="{playground_items}" activeIndex="{playground_activeIndex}" slidesPerView="{playground_slidesPerView}" gap="{playground_gap}" showPagination="{playground_showPagination}" isAutoPlay="{playground_isAutoPlay}" autoplayInterval="{playground_autoplayInterval}" isInfiniteLoop="{playground_isInfiniteLoop}" isRTL="{playground_isRTL}" isCentered="{playground_isCentered}" isDraggable="{playground_isDraggable}" isAutoHeight="{playground_isAutoHeight}" isSnap="{playground_isSnap}" showCounter="{playground_showCounter}" thumbnails="{playground_thumbnails}" ariaLabel="{playground_ariaLabel}" variant="{playground_variant}" class="{playground_class}"></div></div>
|
|
<section class="playground-code" aria-label="Current component code">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component code</span><button type="button" data-playground-copy><span class="icon-[lucide--copy] size-4" aria-hidden="true"></span>Copy</button></header>
|
|
<pre><code data-playground-code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
ariaLabel="Basic usage"
|
|
/></code></pre>
|
|
</section>
|
|
<div class="playground-status" data-playground-status aria-live="polite"></div>
|
|
</div>
|
|
<form class="playground-controls" data-playground-form>
|
|
<header><div><span>Component props</span><strong>22 controls</strong></div><button type="reset"><span class="icon-[lucide--rotate-ccw] size-4" aria-hidden="true"></span>Reset</button></header>
|
|
<div class="playground-fields"><label class="playground-field" for="playground-carousel-size"><span><strong>size</strong><small>string</small></span><select id="playground-carousel-size" name="pg_size"><option value="default" selected>default</option><option value="xs">xs</option><option value="sm">sm</option><option value="md">md</option><option value="lg">lg</option><option value="xl">xl</option><option value="icon">icon</option><option value="icon-xs">icon-xs</option><option value="icon-sm">icon-sm</option><option value="icon-lg">icon-lg</option></select></label><label class="playground-field" for="playground-carousel-color"><span><strong>color</strong><small>string</small></span><select id="playground-carousel-color" name="pg_color"><option value="primary" selected>primary</option><option value="secondary">secondary</option><option value="success">success</option><option value="warning">warning</option><option value="danger">danger</option><option value="info">info</option></select></label><label class="playground-field" for="playground-carousel-title"><span><strong>title</strong><small>string</small></span><input id="playground-carousel-title" name="pg_title" type="text" value="" /></label><label class="playground-field" for="playground-carousel-description"><span><strong>description</strong><small>string</small></span><input id="playground-carousel-description" name="pg_description" type="text" value="" /></label><label class="playground-field" for="playground-carousel-items"><span><strong>items</strong><small>string</small></span><textarea id="playground-carousel-items" name="pg_items" rows="5" spellcheck="false" data-playground-json>[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]</textarea><em data-playground-error></em></label><label class="playground-field" for="playground-carousel-activeIndex"><span><strong>active Index</strong><small>number</small></span><input id="playground-carousel-activeIndex" name="pg_activeIndex" type="number" value="0" /></label><label class="playground-field" for="playground-carousel-slidesPerView"><span><strong>slides Per View</strong><small>number</small></span><input id="playground-carousel-slidesPerView" name="pg_slidesPerView" type="number" value="1" /></label><label class="playground-field" for="playground-carousel-gap"><span><strong>gap</strong><small>string</small></span><input id="playground-carousel-gap" name="pg_gap" type="text" value="0.75rem" /></label><label class="playground-toggle" for="playground-carousel-showPagination"><span><strong>show Pagination</strong><small>boolean</small></span><input id="playground-carousel-showPagination" name="pg_showPagination" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-toggle" for="playground-carousel-isAutoPlay"><span><strong>is Auto Play</strong><small>boolean</small></span><input id="playground-carousel-isAutoPlay" name="pg_isAutoPlay" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-field" for="playground-carousel-autoplayInterval"><span><strong>autoplay Interval</strong><small>number</small></span><input id="playground-carousel-autoplayInterval" name="pg_autoplayInterval" type="number" value="4000" /></label><label class="playground-toggle" for="playground-carousel-isInfiniteLoop"><span><strong>is Infinite Loop</strong><small>boolean</small></span><input id="playground-carousel-isInfiniteLoop" name="pg_isInfiniteLoop" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-toggle" for="playground-carousel-isRTL"><span><strong>is RTL</strong><small>boolean</small></span><input id="playground-carousel-isRTL" name="pg_isRTL" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-toggle" for="playground-carousel-isCentered"><span><strong>is Centered</strong><small>boolean</small></span><input id="playground-carousel-isCentered" name="pg_isCentered" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-toggle" for="playground-carousel-isDraggable"><span><strong>is Draggable</strong><small>boolean</small></span><input id="playground-carousel-isDraggable" name="pg_isDraggable" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-toggle" for="playground-carousel-isAutoHeight"><span><strong>is Auto Height</strong><small>boolean</small></span><input id="playground-carousel-isAutoHeight" name="pg_isAutoHeight" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-toggle" for="playground-carousel-isSnap"><span><strong>is Snap</strong><small>boolean</small></span><input id="playground-carousel-isSnap" name="pg_isSnap" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-toggle" for="playground-carousel-showCounter"><span><strong>show Counter</strong><small>boolean</small></span><input id="playground-carousel-showCounter" name="pg_showCounter" type="checkbox" value="true" data-playground-boolean /><i aria-hidden="true"></i></label><label class="playground-field" for="playground-carousel-thumbnails"><span><strong>thumbnails</strong><small>string</small></span><select id="playground-carousel-thumbnails" name="pg_thumbnails"><option value="none" selected>none</option><option value="vertical">vertical</option><option value="horizontal">horizontal</option></select></label><label class="playground-field" for="playground-carousel-ariaLabel"><span><strong>aria Label</strong><small>string</small></span><input id="playground-carousel-ariaLabel" name="pg_ariaLabel" type="text" value="Basic usage" /></label><label class="playground-field" for="playground-carousel-variant"><span><strong>variant</strong><small>string</small></span><select id="playground-carousel-variant" name="pg_variant"><option value="default" selected>default</option><option value="outline">outline</option><option value="secondary">secondary</option><option value="ghost">ghost</option><option value="destructive">destructive</option><option value="link">link</option></select></label><label class="playground-field" for="playground-carousel-class"><span><strong>class</strong><small>string</small></span><input id="playground-carousel-class" name="pg_class" type="text" value="" /></label></div>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
<div class="detail-layout">
|
|
<main class="detail-content">
|
|
<section class="detail-section"><div class="detail-section-heading"><span>Live examples</span><h2>Designed for real product surfaces</h2><p>Compare configurations and resize the browser to check responsive behavior.</p></div><div class="demo-list">
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Basic usage</span><h2>Basic usage</h2><p>Cycle through images or content slides with accessible previous and next controls.</p></div>
|
|
<span class="demo-case-number">01</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-1" class="demo-canvas demo-canvas--1">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" ariaLabel="Basic usage"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Basic usage usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
ariaLabel="Basic usage"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Navigation</span><h2>Pagination</h2><p>Show the current slide and let users jump directly to any slide.</p></div>
|
|
<span class="demo-case-number">02</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-2" class="demo-canvas demo-canvas--2">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" showPagination="true" ariaLabel="Pagination"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Pagination usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
showPagination="true"
|
|
ariaLabel="Pagination"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Playback</span><h2>Autoplay</h2><p>Advance automatically, pausing while users hover or interact with the carousel.</p></div>
|
|
<span class="demo-case-number">03</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-3" class="demo-canvas demo-canvas--3">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" showPagination="true" isAutoPlay="true" autoplayInterval="2500" ariaLabel="Autoplay"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Autoplay usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
showPagination="true"
|
|
isAutoPlay="true"
|
|
autoplayInterval="2500"
|
|
ariaLabel="Autoplay"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Playback</span><h2>Infinite loop</h2><p>Continue from the last slide back to the first without disabling controls.</p></div>
|
|
<span class="demo-case-number">04</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-4" class="demo-canvas demo-canvas--4">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" showPagination="true" isInfiniteLoop="true" ariaLabel="Infinite loop"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Infinite loop usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
showPagination="true"
|
|
isInfiniteLoop="true"
|
|
ariaLabel="Infinite loop"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Direction</span><h2>RTL</h2><p>Reverse movement and controls for right-to-left interfaces.</p></div>
|
|
<span class="demo-case-number">05</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-5" class="demo-canvas demo-canvas--5">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" activeIndex="1" showPagination="true" isRTL="true" ariaLabel="RTL"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="RTL usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
activeIndex="1"
|
|
showPagination="true"
|
|
isRTL="true"
|
|
ariaLabel="RTL"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Layout</span><h2>Multiple slides</h2><p>Keep several slides visible at once for products, articles, or media collections.</p></div>
|
|
<span class="demo-case-number">06</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-6" class="demo-canvas demo-canvas--6">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" activeIndex="3" slidesPerView="3" showPagination="true" ariaLabel="Multiple slides"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Multiple slides usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
activeIndex="3"
|
|
slidesPerView="3"
|
|
showPagination="true"
|
|
ariaLabel="Multiple slides"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Layout</span><h2>Centered</h2><p>Keep a compact active slide centered while adjacent content remains visible.</p></div>
|
|
<span class="demo-case-number">07</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-7" class="demo-canvas demo-canvas--7">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" slidesPerView="2" showPagination="true" isCentered="true" ariaLabel="Centered"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Centered usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
slidesPerView="2"
|
|
showPagination="true"
|
|
isCentered="true"
|
|
ariaLabel="Centered"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Pointer interaction</span><h2>Draggable</h2><p>Drag or swipe slides with a pointer while preserving keyboard controls.</p></div>
|
|
<span class="demo-case-number">08</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-8" class="demo-canvas demo-canvas--8">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" activeIndex="1" slidesPerView="3" showPagination="true" isDraggable="true" ariaLabel="Draggable"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Draggable usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
activeIndex="1"
|
|
slidesPerView="3"
|
|
showPagination="true"
|
|
isDraggable="true"
|
|
ariaLabel="Draggable"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Layout</span><h2>Auto height</h2><p>Let each slide determine the carousel height for variable-length content.</p></div>
|
|
<span class="demo-case-number">09</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-9" class="demo-canvas demo-canvas--9">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" showPagination="true" isAutoHeight="true" ariaLabel="Auto height"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Auto height usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
showPagination="true"
|
|
isAutoHeight="true"
|
|
ariaLabel="Auto height"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Scrolling</span><h2>Snap scrolling</h2><p>Use native horizontal scrolling with mandatory centered snap points.</p></div>
|
|
<span class="demo-case-number">010</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-10" class="demo-canvas demo-canvas--10">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" slidesPerView="2" showPagination="true" isSnap="true" ariaLabel="Snap scrolling"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Snap scrolling usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
slidesPerView="2"
|
|
showPagination="true"
|
|
isSnap="true"
|
|
ariaLabel="Snap scrolling"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Status</span><h2>Slide counter</h2><p>Announce and display the current position and total slide count.</p></div>
|
|
<span class="demo-case-number">011</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-11" class="demo-canvas demo-canvas--11">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" showCounter="true" ariaLabel="Slide counter"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Slide counter usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
showCounter="true"
|
|
ariaLabel="Slide counter"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Thumbnails</span><h2>Thumbnails (horizontal)</h2><p>Use a horizontal thumbnail rail as an alternate set of slide controls.</p></div>
|
|
<span class="demo-case-number">012</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-12" class="demo-canvas demo-canvas--12">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" thumbnails="horizontal" ariaLabel="Thumbnails (horizontal)"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Thumbnails (horizontal) usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
thumbnails="horizontal"
|
|
ariaLabel="Thumbnails (horizontal)"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
<article class="demo-case">
|
|
<header class="demo-case-header">
|
|
<div><span class="demo-case-eyebrow">Thumbnails</span><h2>Thumbnails (vertical)</h2><p>Place thumbnail navigation beside the carousel on layouts with more room.</p></div>
|
|
<span class="demo-case-number">013</span>
|
|
</header>
|
|
<div class="demo-workbench">
|
|
<div id="carousel-demo-13" class="demo-canvas demo-canvas--13">
|
|
<div class="demo-browser-chrome"><span></span><span></span><span></span><small>Live preview</small></div>
|
|
<div class="demo-render"><div data-component="Carousel" size="default" color="primary" title="" description="" items="[{"label":"First slide","title":"First slide","description":"Introduce the collection with a concise, focused message."},{"label":"Second slide","title":"Second slide","description":"Move through content using buttons, pagination, keyboard, or touch."},{"label":"Third slide","title":"Third slide","description":"Every interaction exposes useful public lifecycle and navigation events."},{"label":"Fourth slide","title":"Fourth slide","description":"Flexible for larger collections."},{"label":"Fifth slide","title":"Fifth slide","description":"Responsive at every viewport."},{"label":"Sixth slide","title":"Sixth slide","description":"Built with accessible semantics."}]" thumbnails="vertical" ariaLabel="Thumbnails (vertical)"></div></div>
|
|
</div>
|
|
<section class="demo-code" aria-label="Thumbnails (vertical) usage">
|
|
<header><span><span class="icon-[lucide--code-2] size-4" aria-hidden="true"></span>Component usage</span><small>.wrn</small></header>
|
|
<pre><code><Carousel
|
|
items='[
|
|
{
|
|
"label": "First slide",
|
|
"title": "First slide",
|
|
"description": "Introduce the collection with a concise, focused message."
|
|
},
|
|
{
|
|
"label": "Second slide",
|
|
"title": "Second slide",
|
|
"description": "Move through content using buttons, pagination, keyboard, or touch."
|
|
},
|
|
{
|
|
"label": "Third slide",
|
|
"title": "Third slide",
|
|
"description": "Every interaction exposes useful public lifecycle and navigation events."
|
|
},
|
|
{
|
|
"label": "Fourth slide",
|
|
"title": "Fourth slide",
|
|
"description": "Flexible for larger collections."
|
|
},
|
|
{
|
|
"label": "Fifth slide",
|
|
"title": "Fifth slide",
|
|
"description": "Responsive at every viewport."
|
|
},
|
|
{
|
|
"label": "Sixth slide",
|
|
"title": "Sixth slide",
|
|
"description": "Built with accessible semantics."
|
|
}
|
|
]'
|
|
thumbnails="vertical"
|
|
ariaLabel="Thumbnails (vertical)"
|
|
/></code></pre>
|
|
</section>
|
|
</div>
|
|
</article></div></section>
|
|
<section id="events" class="detail-section"><div class="detail-section-heading"><span>Component events</span><h2>Events</h2><p>Public events declared by this component. Custom events bubble from the component root and expose state through <code>event.detail</code>.</p></div><div class="detail-events-grid"><div class="detail-events-list"><div><code>@initialize</code><span>Fires when the component emits the initialize event.</span></div><div><code>@change</code><span>Fires when the component value or selection changes.</span></div><div><code>@previous</code><span>Fires when the component emits the previous event.</span></div><div><code>@next</code><span>Fires when the component emits the next event.</span></div><div><code>@play</code><span>Fires when the component emits the play event.</span></div><div><code>@pause</code><span>Fires when the component emits the pause event.</span></div><div><code>@reachStart</code><span>Fires when the component emits the reach Start event.</span></div><div><code>@reachEnd</code><span>Fires when the component emits the reach End event.</span></div><div><code>@dragStart</code><span>Fires when the component emits the drag Start event.</span></div><div><code>@dragEnd</code><span>Fires when the component emits the drag End event.</span></div></div><section class="demo-code"><header><span><span class="icon-[lucide--radio] size-4" aria-hidden="true"></span>Event listener</span><small>.js</small></header><pre><code>const component = document.querySelector('[data-wrn-events]')
|
|
|
|
component.addEventListener('initialize', (event) => {
|
|
console.log(event.detail)
|
|
})</code></pre></section></div></section>
|
|
<section id="api" class="detail-section"><div class="detail-section-heading"><span>Component API</span><h2>Props and configuration</h2><p>All content and behavior shown above is supplied through these props and slots.</p></div><div class="docs-table-wrap"><table class="docs-table"><thead><tr><th>Prop</th><th>Type</th><th>Default</th><th>Required</th></tr></thead><tbody><tr><td><code>size</code></td><td>string</td><td><code>"default"</code></td><td>No</td></tr><tr><td><code>color</code></td><td>string</td><td><code>"primary"</code></td><td>No</td></tr><tr><td><code>title</code></td><td>string</td><td><code>""</code></td><td>No</td></tr><tr><td><code>description</code></td><td>string</td><td><code>""</code></td><td>No</td></tr><tr><td><code>items</code></td><td>string</td><td><code>[]</code></td><td>No</td></tr><tr><td><code>activeIndex</code></td><td>number</td><td><code>0</code></td><td>No</td></tr><tr><td><code>slidesPerView</code></td><td>number</td><td><code>1</code></td><td>No</td></tr><tr><td><code>gap</code></td><td>string</td><td><code>"0.75rem"</code></td><td>No</td></tr><tr><td><code>showPagination</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>isAutoPlay</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>autoplayInterval</code></td><td>number</td><td><code>4000</code></td><td>No</td></tr><tr><td><code>isInfiniteLoop</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>isRTL</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>isCentered</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>isDraggable</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>isAutoHeight</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>isSnap</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>showCounter</code></td><td>boolean</td><td><code>false</code></td><td>No</td></tr><tr><td><code>thumbnails</code></td><td>string</td><td><code>"none"</code></td><td>No</td></tr><tr><td><code>ariaLabel</code></td><td>string</td><td><code>"Content carousel"</code></td><td>No</td></tr><tr><td><code>variant</code></td><td>string</td><td><code>"default"</code></td><td>No</td></tr><tr><td><code>class</code></td><td>string</td><td><code>""</code></td><td>No</td></tr></tbody></table></div></section>
|
|
</main>
|
|
<aside class="detail-aside">
|
|
<div class="detail-toc"><strong>On this page</strong><a href="#playground">Playground</a><span class="detail-toc-group">Basic usage</span><a href="#carousel-demo-1">Basic usage</a><a href="#carousel-demo-2">Pagination</a><span class="detail-toc-group">Playback</span><a href="#carousel-demo-3">Autoplay</a><a href="#carousel-demo-4">Infinite loop</a><span class="detail-toc-group">Direction</span><a href="#carousel-demo-5">RTL</a><span class="detail-toc-group">Layouts</span><a href="#carousel-demo-6">Multiple slides</a><a href="#carousel-demo-7">Centered</a><a href="#carousel-demo-8">Draggable</a><a href="#carousel-demo-9">Auto height</a><a href="#carousel-demo-10">Snap scrolling</a><span class="detail-toc-group">Status</span><a href="#carousel-demo-11">Slide counter</a><span class="detail-toc-group">Thumbnails</span><a href="#carousel-demo-12">Thumbnails (horizontal)</a><a href="#carousel-demo-13">Thumbnails (vertical)</a><a href="#events">Events</a><a href="#api">Props API</a></div>
|
|
</aside>
|
|
</div>
|
|
<nav class="detail-pagination">
|
|
<a href="/components/card"><small>Previous</small><strong>← Card</strong></a>
|
|
<a href="/components/chat-bubble"><small>Next</small><strong>Chat Bubble →</strong></a>
|
|
</nav>
|
|
}
|
|
}
|