View
Last updated
Was this helpful?
Last updated
Was this helpful?
Views act like pages for your widgets.
Each widget must have at least one view.
Widgets always have an initial view, which is the view that is displayed when the widget first appears.
Overlay views float on top of other content on a website. They can be positioned in the center of the screen or along the edge of the page.
Overlay views can have an optional backdrop, which sits behind the view covering the entire page. This can be be used to dim or lighten the page so that the view is visually focused.
An embedded view is inserted into a specific section of a page. The view will take up space on the page and affect the flow and layout of other elements.
The insertion point for the view is specified as a .
For example, the selector #banner_container
could be used to target the section in the following HTML document:
Embedded views are either prepended or appended to the part of the page they target. This inserts the view before or after any other content that already exists in the section.
Embedded views are created inside a "wrapper" element, before inserted into the page. By default this wrapper element automatically assumes the height of the view itself, but a specific height may be specified.
For example, this would allow to embed and vertically center a view into a part of the page by making the wrapper height taller than the view.
Views can be configured to transition onto the screen when displayed.
The property allows you override the stacking position of the view with respect to other content on the page.