diff -r 000000000000 -r 40c8f766c9b8 src/cm/media/js/lib/yui/yui_3.0.0b1/examples/overlay/overlay-align.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/media/js/lib/yui/yui_3.0.0b1/examples/overlay/overlay-align.html Mon Nov 23 15:14:29 2009 +0100 @@ -0,0 +1,407 @@ + + + + + YUI Library Examples: Overlay: Extended XY Positioning + + + + + + + + + + + +
+
+
+

+ + YUI 3.x Home - + +

+
+ + +
+ + + +
+
+
+
+

YUI Library Examples: Overlay: Extended XY Positioning

+
+
+ +

Note: This is YUI 3.x. Looking for YUI 2.x?

+ +
+
+
+
+ +

Overlay: Extended XY Positioning

+ +
+

+ This example show how you can use Overlay's extended positioning support to align or center the overlay either in the viewport, or relative to another node on the page. You can specify any one of 9 points (top-left, top-right, bottom-left, bottom-right, top-center, bottom-center, left-center, right-center, center) to align on both the Overlay and the node/viewport it is being aligned to.

+ +
+
+ + + + +
+

+

+

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc pretium quam eu mi varius pulvinar. Duis orci arcu, ullamcorper sit amet, luctus ut, interdum ac, quam. Pellentesque euismod. Nam tincidunt, purus in ultrices congue, urna neque posuere arcu, aliquam tristique purus sapien id nulla. Etiam rhoncus nulla at leo. Cras scelerisque nisl in nibh. Sed eget odio. Morbi elit elit, porta a, convallis sit amet, rhoncus non, felis. Mauris nulla pede, pretium eleifend, porttitor at, rutrum id, orci. Quisque non urna. Nulla aliquam rhoncus est.

+
id = #align1
+
id = #align2
+
id = #align3
+
+ + + + + + +
+
+
+ +

Extended XY Overlay Positioning - Align, Center Support

+ +

Setting Up The YUI Instance

+ +

As with the "Basic XY Positioning" example, to create an instance of an Overlay on your page, the only module you need to request is the overlay module. The overlay module will pull in the widget, widget-stack, widget-position, widget-position-ext and widget-stdmod dependencies it has.

+ + + +

Using the overlay module, will also pull down the default CSS required for overlay, on top of which we only need to add our required look/feel CSS for the example.

+ +

Instantiating The Overlay

+ +

For this example, we'll instantiate an Overlay, as we did for the "Basic XY Positioning" example, however we'll set the content for the Overlay sections using the headerContent and bodyContent attributes. We won't create a footer section for this overlay:

+ + + +

Since the Overlay is created from script, and doesn't currently exist in the document, we pass the overlay.render() method a selector query ("#overlay-align") for the node under which we want the Overlay to be rendered in the DOM. If we leave out this argument to render (or if the selector query doesn't bring back a node), the Overlay will be rendered to the current document's body element.

+ +

Aligning the overlay

+ +

The WidgetPositionExt extension used to create the overlay class adds the align and centered attributes to the Overlay, which can be used to align or center the Overlay relative to another element on the page (or the viewport).

+ +

The align attribute accepts as a value an object literal with the following properties:

+ +
+
node
+
+ The node to which the Widget is to be aligned. If set to null, or not provided, the Overlay is aligned to the viewport +
+
points
+
+

+ A two element array, defining the two points on the Overlay and node which are to be aligned. The first element is the point on the Overlay, and the second element is the point on the node (or viewport). + Supported alignment points are defined as static properties on WidgetPositionExt. +

+

+ e.g. [WidgetPositionExt.TR, WidgetPositionExt.TL] aligns the Top-Right corner of the Overlay with the + Top-Left corner of the node/viewport, and [WidgetPositionExt.CC, WidgetPositionExt.TC] aligns the Center of the + Overlay with the Top-Center edge of the node/viewport. +

+
+
+ +

The centered property can either by set to true to center the Overlay in the viewport, or set to a selector string or node reference to center the Overlay in a particular node.

+ +

The example loops around a list of 6 alignment configurations, as the "Align Next" button is clicked:

+ + + +

NOTE: Future verions will add support to WidgetPositionExt, to re-align the Overlay in response to trigger events (e.g. window resize, scroll etc.) and support for constrained positioning.

+ +

CSS: Overlay Look/Feel

+ +

As mentioned in the "Basic XY Positioning" example, the overlay.css Sam Skin file (build/overlay/assets/skins/sam/overlay.css) provides the default functional CSS for the overlay. Namely the CSS rules to hide the overlay, and position it absolutely. However there's no default out-of-the-box look/feel applied to the Overlay widget.

+ +

The example provides it's own look and feel for the Overlay, by defining rules for the content box, header and body sections:

+ + +
+ +
+ +
+
+ + + +
+ +
+

Copyright © 2009 Yahoo! Inc. All rights reserved.

+

Privacy Policy - + Terms of Service - + Copyright Policy - + Job Openings

+
+
+ + + +