Overview
Carousel
presents a typical carousel with a sliding effect, left/right arrow buttons, and page dots. The user can move between items with touch, the mouse, the keyboard, or a trackpad.
By default, Carousel
uses a SlidingStage as the "stage" for rendering the featured or selected item. The default left/right arrow buttons are provided by ArrowDirectionMixin.
In the Plain reference design system, the PlainCarousel uses a simple PlainPageDot as a proxy element. The related CarouselWithThumbnails represents items with an img
proxy instead of a dot. You can also supply custom proxy elements used to represent the items.
For a carousel that supports the same types of navigation, but without arrows, dots, or other adornments, see SlidingPages.
The CarouselSlideshow variation adds a timer for slideshow functionality.
Carousel
uses ArrowDirectionMixin to create the left and right arrow buttons. See that mixin for customization options.
A Carousel
typically exhibits a horizontal orientation, although you can set the orientation
property to "vertical". (On iOS, Mobile Safari may try to handle vertical touch gestures itself; the demo works more cleanly on Chrome for Android, which does not have that problem.)
Carousel
incorporates LanguageDirectionMixin so that it can flip the order of items in right-to-left languages. See that page for a demonstration.
A carousel exposes a variety of internal parts that you can customize with CSS:
Note: As of November 2019, the above demo requires a pre-release version of Chrome or Edge to completely style the carousel's internal parts; you will also need to enable experimental web platform features by opening chrome://flags/#enable-experimental-web-platform-features
. The demo will show partially-customized parts in production Chrome or pre-release versions of Firefox and Safari.
Usage
import Carousel from "elix/define/Carousel.js";
const carousel = new Carousel(); // or
const carousel = document.createElement("elix-carousel");
In HTML:
<script type="module" src="node_modules/elix/define/Carousel.js"></script>
<elix-carousel>
<!-- Carousel items such as img elements go here. -->
<img src="image1.jpg" />
<img src="image2.jpg" />
<img src="image3.jpg" />
<img src="image4.jpg" />
<img src="image5.jpg" />
</elix-carousel>
Carousel
is appropriate when:
- You want to present to the user a collection of images, or a mixture of graphical and textual content.
- You want to let the user focus on a single item at a time.
- The number of items is small (2–10). If you have a large collection of images to show, CarouselWithThumbnails or SlidingPages may be more suitable.
See also
API
Class hierarchy:
The element defines the following shadow parts:
-
arrow-button
: both of the arrow buttons, default type is Button -
arrow-button-next
: the arrow button that navigates to the next item -
arrow-button-previous
: the arrow button that navigates to the previous item -
proxy
: an element representing an item in the list, default type isdiv
element -
proxy-list
: the container for the list of proxies, default type is ListBox -
stage
: the main element showing a single item from the list, default type is SlidingStage
arrow Button Overlap property
True if the arrow buttons should overlap the component contents; false if they should appear to the side of the contents.
Type: boolean
Default: true
Defined by ArrowDirectionMixin
arrow Button Part Type property
The class or tag used to create the arrow-button
parts – the
previous/next arrow buttons.
Type: (component class constructor)|HTMLTemplateElement|string
Defined by ArrowDirectionMixin
boolean Attribute Value(name, value) static method
Given a string value for a named boolean attribute, return true
if the
value is either: a) the empty string, or b) a case-insensitive match for the
name.
This is native HTML behavior; see the MDN documentation on boolean attributes for the reasoning.
Given a null value, this return false
.
Given a boolean value, this return the value as is.
Parameters:
- name:
string
– - value:
string|boolean|null
–
Defined by AttributeMarshallingMixin
can Go Next property
True if the item cursor can be moved to the next item, false if not (the current item is the last item in the list).
Type: boolean
Defined by Explorer
can Go Previous property
True if the item cursor can be moved to the previous item, false if not (the current item is the first one in the list).
Type: boolean
Defined by Explorer
closest Available Item Index(state, options) method
Look for an item which is available in the given state..
The options
parameter can accept options for:
direction
: 1 to move forward, -1 to move backwardindex
: the index to start at, defaults tostate.currentIndex
wrap
: whether to wrap around the ends of theitems
array, defaults tostate.cursorOperationsWrap
.
If an available item was found, this returns its index. If no item was found, this returns -1.
Parameters:
- state:
PlainObject
– - options:
PlainObject
–
Returns: number
Defined by ItemsCursorMixin
content Slot property
See contentSlot.
Defined by SlotContentMixin
current Index property
currentindexchange event
Raised when the currentIndex
property changes.
Defined by CursorAPIMixin
current Item property
current Item Required property
True if the list should always have a current item (if it has items).
Type: boolean
Default: false
Defined by CursorAPIMixin
cursor Operations Wrap property
True if cursor operations wrap from last to first, and vice versa.
Type: boolean
Default: false
Defined by CursorAPIMixin
default State property
The default state for the component. This can be extended by mixins and classes to provide additional default state.
Type: PlainObject
Defined by ReactiveMixin
go Down() method
Interprets goDown
to mean "move to the next item".
Defined by DirectionCursorMixin
go End() method
Interprets goEnd
to mean "move to the last item".
Defined by DirectionCursorMixin
go First() method
Moves to the first item in the list.
Returns: Boolean
True if the current item changed, false if not.
Defined by CursorAPIMixin
go Last() method
Move to the last item in the list.
Returns: Boolean
True if the current item changed
Defined by CursorAPIMixin
go Left() method
Interprets goLeft
to mean "move to the previous item".
If the element has a rightToLeft
property and it is true, then this
moves to the next item.
Defined by DirectionCursorMixin
go Next() method
Move to the next item in the list.
If the list has no current item, the first item will become current.
Returns: Boolean
True if the current item changed
Defined by CursorAPIMixin
go Previous() method
Moves to the previous item in the list.
If the list has no current item, the last item will become current.
Returns: Boolean
True if the current item changed
Defined by CursorAPIMixin
go Right() method
Interprets goRight
to mean "move to the next item".
If the element has a rightToLeft
property and it is true, then this
moves to the previous item.
Defined by DirectionCursorMixin
go Start() method
Interprets goStart
to mean "move to the first item".
Defined by DirectionCursorMixin
go Up() method
Interprets goUp
to mean "move to the previous item".
Defined by DirectionCursorMixin
ids property
A convenient shortcut for looking up an element by ID in the component's Shadow DOM subtree.
Example: if component's template contains a shadow element <button id="foo">
, you can use the reference this[ids].foo
to obtain
the corresponding button in the component instance's shadow tree. The
ids
property is simply a shorthand for getElementById
, so
this[ids].foo
is the same as
this[shadowRoot].getElementById('foo')
.
Type: object
Defined by ShadowTemplateMixin
[internal.go First]() method
Move to the first item in the set.
Returns: Boolean
True if the current item changed, false if not.
Defined by ItemsCursorMixin
[internal.go Last]() method
Move to the last item in the set.
Returns: Boolean
True if the current item changed, false if not.
Defined by ItemsCursorMixin
[internal.go Next]() method
Move to the next item in the set.
If no item is current, move to the first item.
Returns: Boolean
True if the current item changed, false if not.
Defined by ItemsCursorMixin
[internal.go Previous]() method
Move to the previous item in the set.
If no item is current, move to the last item.
Returns: Boolean
True if the current item changed, false if not.
Defined by ItemsCursorMixin
keydown() method
See the symbols documentation for details.
Defined by KeyboardMixin
proxies property
The current set of proxy elements that correspond to the component's
main items
. If you have assigned elements to the proxy
slot, this
returns the collection of those elements. Otherwise, this will return
a collection of default proxies generated by the component, one for
each item.
Type: Array.
Defined by Explorer
proxy List Overlap property
True if the list of proxies should overlap the stage, false if not.
Type: boolean
Default: false
Defined by Explorer
proxy List Part Type property
The class or tag used to create the proxy-list
part - the list
of selectable proxies representing the items in the list.
Type: (component class constructor)|HTMLTemplateElement|string
Default: ListBox
Defined by Explorer
proxy List Position property
The position of the proxy list relative to the stage.
The start
and end
values refer to text direction: in left-to-right
languages such as English, these are equivalent to left
and right
,
respectively.
Type: 'bottom'|'end'|'left'|'right'|'start'|'top'
Default: 'start'
Defined by Explorer
proxy Part Type property
The class or tag used to create the proxy
parts - the default
representations for the list's items.
Type: (component class constructor)|HTMLTemplateElement|string
Default: 'div'
Defined by Explorer
render(changed) method
Render the indicated changes in state to the DOM.
The default implementation of this method does nothing. Override this method in your component to update your component's host element and any shadow elements to reflect the component's new state. See the rendering example.
Be sure to call super
in your method implementation so that your
component's base classes and mixins have a chance to perform their own
render work.
Parameters:
- changed:
ChangedFlags
– dictionary of flags indicating which state members have changed since the last render
Defined by ReactiveMixin
render Changes() method
Render any pending component changes to the DOM.
This method does nothing if the state has not changed since the last render call.
ReactiveMixin will invoke this method following a setState
call;
you should not need to invoke this method yourself.
This method invokes the internal render
method, then invokes the
rendered
method.
Defined by ReactiveMixin
rendered(changed) method
Perform any work that must happen after state changes have been rendered to the DOM.
The default implementation of this method does nothing. Override this
method in your component to perform work that requires the component to
be fully rendered, such as setting focus on a shadow element or
inspecting the computed style of an element. If such work should result
in a change in component state, you can safely call setState
during the
rendered
method.
Be sure to call super
in your method implementation so that your
component's base classes and mixins have a chance to perform their own
post-render work.
Parameters:
- changed:
ChangedFlags
–
Defined by ReactiveMixin
selected Index property
The index of the selected item, or -1 if no item is selected.
Type: number
Defined by SingleSelectAPIMixin
selectedindexchange event
Raised when the selectedIndex
property changes.
Defined by SingleSelectAPIMixin
selected Item property
selectioneffectend event
This event is raised if the current stage
applies a transition
effect when changing the selection, and the selection effect has
completed. CrossfadeStage applies such an effect,
for example.
The order of events when the selectedIndex
property changes is
therefore: selectedindexchange
(occurs immediately when the index
changes), followed by selectioneffectend
(occurs some time later).
Defined by Explorer
set State(changes) method
Update the component's state by merging the specified changes on top of the existing state. If the component is connected to the document, and the new state has changed, this returns a promise to asynchronously render the component. Otherwise, this returns a resolved promise.
Parameters:
- changes:
PlainObject
– the changes to apply to the element's state
Returns: Promise
- resolves when the new state has been rendered
Defined by ReactiveMixin
stage Part Type property
The class or tag used for the main "stage" element that shows a single item at a time.
Type: (component class constructor)|HTMLTemplateElement|string
Default: Modes
Defined by Explorer
state property
The component's current state.
The returned state object is immutable. To update it, invoke
internal.setState
.
It's extremely useful to be able to inspect component state while
debugging. If you append ?elixdebug=true
to a page's URL, then
ReactiveMixin will conditionally expose a public state
property that
returns the component's state. You can then access the state in your
browser's debug console.
Type: PlainObject
Defined by ReactiveMixin
state Effects(state, changed) method
Ask the component whether a state with a set of recently-changed fields implies that additional second-order changes should be applied to that state to make it consistent.
This method is invoked during a call to internal.setState
to give all
of a component's mixins and classes a chance to respond to changes in
state. If one mixin/class updates state that it controls, another
mixin/class may want to respond by updating some other state member that
it controls.
This method should return a dictionary of changes that should be applied
to the state. If the dictionary object is not empty, the
internal.setState
method will apply the changes to the state, and
invoke this stateEffects
method again to determine whether there are
any third-order effects that should be applied. This process repeats
until all mixins/classes report that they have no additional changes to
make.
See an example of how ReactiveMixin
invokes the stateEffects
to
ensure state consistency.
Parameters:
- state:
PlainObject
– a proposal for a new state - changed:
ChangedFlags
– the set of fields changed in this latest proposal for the new state
Returns: PlainObject
Defined by ReactiveMixin
swipe Down() method
Invokes the goUp method.
Defined by SwipeDirectionMixin
swipe Left() method
Invokes the goRight method.
Defined by SwipeDirectionMixin
swipe Right() method
Invokes the goLeft method.
Defined by SwipeDirectionMixin
swipe Target property
swipe Up() method
Invokes the goDown method.
Defined by SwipeDirectionMixin
wrap(target) method
Destructively wrap a node with elements to show arrow buttons.
Parameters:
- target:
Element
– the node that should be wrapped by buttons
Defined by ArrowDirectionMixin