Contents
- Usage
- Using the Library
- Using the Themes
- Using the Demo App
- Components
- Accordion
- AnimatedImage
- AutoComplete
- AutoFitText
- BarCode
- BitmapAdjustments
- ButtonBar
- Calculator
- Calendar
- CAPTCHA
- CarouselLayout
- CarouselList
- Clocks
- Colorizer
- ColorPicker
- ColorSpacePicker
- CompassContainer
- CoverflowLayout
- CoverflowList
- CursorManager
- DatePicker
- DockingCompassContainer
- Donut Chart
- ExpandingContainer
- FieldSet
- Filters
- FlexContextMenu
- FloatPaneControlBar
- Funnel Chart
- GraphicsEditor
- Heatmap
- HtmlDragDrop
- HtmlFrame
- HtmlGeolocation
- iCalendarParser
- iCalendarRecurrence
- IconButton
- Linear Gauges
- Magnifier
- Menu and MenuBar
- MiniViewport
- PackedLayout
- PackedList
- Pane
- PopUpButton
- ProgressDisplay
- Radar
- Radial Gauge
- Rating
- ReflectionContainer
- RichTextEditor
- RotaryField
- SafariMouseWheelFix
- Scroller
- Separators
- SliderField
- Sparklines
- TabPaneNavigator
- TextInput
- TimebarContainer
- Timeline
- TimeMachineLayout
- TimeMachineList
- TimePicker
- ToggleSwitchDesktop
- TransformContainer
- TreeMap
- ViewStack
- WheelList
CoverflowLayout
Overview
Layout class that lays out elements in a Coverflow layout pattern. Supports virtualization.
Scrolling
The "xSeperation" property controls how far apart the elements are placed. The width of the elements is not relevant to the horizontal gap between elements. In other words, the gap is the "xSeperation" property.
Scrolling occurs horizontally along the x axis. Therefore, vanilla scrolling implementations can handle scrolling.
Relevant Properties
Both virtualized and non-virtualized layouts both restrict the number of elements displayed to the "maxDisplayedElements" property value.
Accessibility and Keyboard Support
Methods used to interact with lists are implemented and scrolling through the layout via the arrow keys is supported.
Mouse Wheel Support
Mouse wheel support is not implemented in this layout. See the CoverflowList class for an implementation of mouse wheel support with a CoverflowLayout.
Example
See the CoverflowLayout demo application for example code.
Back To Top