Information about the current browser environment. For each browser, the value is true
when the current browser
is of that kind, and false
otherwise.
DOM element of the element with the .ContentFlow
class
DOM element of the element with the .flow
class
DOM element of the element with the .scrollbar
class
DOM element of the element with the .slider
class
The current configuration for this content flow gallery.
The list of items that are currently in this content flow gallery.
Called to add a new item 'element' to the flow at the position index. The element has to be a valid item element. So it must have at least this HTML strucutre:
<div class="item">
<img class="content" src="url/to/image"/>
</div>
An element to add to this content flow gallery.
0-based index or position where to add the item.
0-based index position of added item.
Called to get the currently active item.
The currently active item.
Returns the item at given index.
0-based index of an item to get.
Called to get the number of items currently in the flow
The number of items in this content flow gallery.
Called to scroll to item.
Item to scroll to. If a number and the fractional part is 0
, interpret the value as the 0-index of
an item. If a number with a non-zero fractional part, interpret this value as the position to scroll to.
Called to reinitialize the size of the flow items, after the size of the flow has changed. Is called if window is resized.
Called to remove an item from the flow. If the optional parameter index
is given, the element at the index
position will be removed. Otherwise, the currently active item will be removed.
Optinal 0-based index of the item to remove
The removed item node
Called to set options after object creation
New options to set.
Generated using TypeDoc
Interface for the content flow class that represents an instantiated content flow gallery. It is responsible for controlling the gallery.