upgrade to yui 2.5.1
This commit is contained in:
parent
e00050ad1c
commit
ff7d72becc
1632 changed files with 812103 additions and 0 deletions
141
www/extras/yui/examples/menu/example04_clean.html
Normal file
141
www/extras/yui/examples/menu/example04_clean.html
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<title>Grouped Menu Items Using JavaScript</title>
|
||||
|
||||
<style type="text/css">
|
||||
/*margin and padding on body element
|
||||
can introduce errors in determining
|
||||
element position and are not recommended;
|
||||
we turn them off as a foundation for YUI
|
||||
CSS treatments. */
|
||||
body {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../../build/menu/assets/skins/sam/menu.css" />
|
||||
<script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
|
||||
<script type="text/javascript" src="../../build/container/container_core-min.js"></script>
|
||||
<script type="text/javascript" src="../../build/menu/menu-min.js"></script>
|
||||
|
||||
|
||||
<!--begin custom header content for this example-->
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
Set the "zoom" property to "normal" since it is set to "1" by the
|
||||
".example-container .bd" rule in yui.css and this causes a Menu
|
||||
instance's width to expand to 100% of the browser viewport.
|
||||
*/
|
||||
|
||||
div.yuimenu .bd {
|
||||
|
||||
zoom: normal;
|
||||
|
||||
}
|
||||
|
||||
</style>
|
||||
<!--end custom header content for this example-->
|
||||
|
||||
</head>
|
||||
|
||||
<body class=" yui-skin-sam">
|
||||
|
||||
<h1>Grouped Menu Items Using JavaScript</h1>
|
||||
|
||||
<div class="exampleIntro">
|
||||
<p>This example demonstrates how to group MenuItem instances.</p>
|
||||
<p id="clicknote">
|
||||
<em>Note:</em> By default clicking outside of a Menu instance will hide it.
|
||||
Additionally, MenuItem instances without a submenu or a URL to navigate to will
|
||||
hide their parent Menu instance when clicked. Click the "Show Menu" button
|
||||
below to make the Menu instance visible if it is hidden.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
/*
|
||||
Initialize and render the Menu when the element it is to be
|
||||
rendered into is ready to be scripted.
|
||||
*/
|
||||
|
||||
YAHOO.util.Event.onAvailable("rendertarget", function () {
|
||||
|
||||
/*
|
||||
Instantiate a Menu: The first argument passed to the
|
||||
constructor is the id of the element in the page
|
||||
representing the Menu; the second is an object literal
|
||||
of configuration properties.
|
||||
*/
|
||||
|
||||
var oMenu = new YAHOO.widget.Menu("menuwithgroups", { fixedcenter: true });
|
||||
|
||||
/*
|
||||
Add items to the Menu instance by passing an array of object literals
|
||||
(each of which represents a set of YAHOO.widget.MenuItem
|
||||
configuration properties) to the "addItems" method.
|
||||
*/
|
||||
|
||||
oMenu.addItems([
|
||||
|
||||
[
|
||||
{ text: "Yahoo! Mail", url: "http://mail.yahoo.com" },
|
||||
{ text: "Yahoo! Address Book", url: "http://addressbook.yahoo.com" },
|
||||
{ text: "Yahoo! Calendar", url: "http://calendar.yahoo.com" },
|
||||
{ text: "Yahoo! Notepad", url: "http://notepad.yahoo.com" }
|
||||
],
|
||||
|
||||
[
|
||||
|
||||
{ text: "Yahoo! Local", url: "http://local.yahoo.com" },
|
||||
{ text: "Yahoo! Maps", url: "http://maps.yahoo.com" },
|
||||
{ text: "Yahoo! Travel", url: "http://travel.yahoo.com" },
|
||||
{ text: "Yahoo! Shopping", url: "http://shopping.yahoo.com" }
|
||||
|
||||
],
|
||||
|
||||
[
|
||||
|
||||
{ text: "Yahoo! Messenger", url: "http://messenger.yahoo.com" },
|
||||
{ text: "Yahoo! 360", url: "http://360.yahoo.com" },
|
||||
{ text: "Yahoo! Groups", url: "http://groups.yahoo.com" },
|
||||
{ text: "Flickr Photo Sharing", url: "http://www.flickr.com" }
|
||||
|
||||
]
|
||||
|
||||
]);
|
||||
|
||||
|
||||
/*
|
||||
Since this Menu instance is built completely from script, call the
|
||||
"render" method passing in the DOM element that it should be
|
||||
appended to.
|
||||
*/
|
||||
|
||||
oMenu.render("rendertarget");
|
||||
|
||||
|
||||
// Set focus to the Menu when it is made visible
|
||||
|
||||
oMenu.subscribe("show", oMenu.focus);
|
||||
|
||||
|
||||
YAHOO.util.Event.addListener("menutoggle", "click", oMenu.show, null, oMenu);
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<button id="menutoggle" type="button">Show Menu</button>
|
||||
<div id="rendertarget"></div>
|
||||
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue