Website Left Nav Using Animation With Submenus From JavaScript (YUI Library) : Layout « YUI Library « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » YUI Library » Layout 
Website Left Nav Using Animation With Submenus From JavaScript (YUI Library)
 

<!--
Software License Agreement (BSD License)
Copyright (c2009, Yahoo! Inc.
All rights reserved.

Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice, this list of conditions and the
      following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
    * Neither the name of Yahoo! Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Yahoo! Inc.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTIONHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISEARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Sources of Intellectual Property Included in the YUI Library

YUI is issued by Yahoo! under the BSD license above. Below is a list of certain publicly available software that is the source of intellectual property in YUI, along with the licensing terms that pertain to thosesources of IP. This list is for informational purposes only and is not intended to represent an exhaustive list of third party contributions to the YUI.

    * Douglas Crockford's JSON parsing and stringifying methods: In the JSON Utility, Douglas Crockford's JSON parsing and stringifying methods are adapted from work published at JSON.org. The adapted work is in the public domain.
    * Robert Penner's animation-easing algorithms: In the Animation Utility, YUI makes use of Robert Penner's algorithms for easing.
    * Geoff Stearns's SWFObject: In the Charts Control and the Uploader versions through 2.7.0, YUI makes use of Geoff Stearns's SWFObject v1.5 for Flash Player detection and embedding. More information on SWFObject can be found here (http://blog.deconcept.com/swfobject/). SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License (http://www.opensource.org/licenses/mit-license.php).
    * Diego Perini's IEContentLoaded technique: The Event Utility employs a technique developed by Diego Perini and licensed under GPL. YUI's use of this technique is included under our BSD license with the author's permission.

-->

<!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>Example: Website Left Nav Using Animation With Submenus From JavaScript (YUI Library)</title>
        
        <!-- Standard reset, fonts and grids -->

        <link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/reset-fonts-grids/reset-fonts-grids.css">
 

        <!-- CSS for Menu -->

        <link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/menu/assets/skins/sam/menu.css"


        <!-- Page-specific styles -->

        <style type="text/css">

            div.yui-b p {
            
                margin: 0 0 .5em 0;
                color: #999;
            
            }
            
            div.yui-b p strong {
            
                font-weight: bold;
                color: #000;
            
            }
            
            div.yui-b p em {

                color: #000;
            
            }            
            
            h1 {

                font-weight: bold;
                margin: 0 0 1em 0;
                padding: .25em .5em;
                background-color: #ccc;

            }

            #productsandservices {
                
                position: static;
                
            }


      /*
        For IE 6: trigger "haslayout" for the anchor elements in the root Menu by 
        setting the "zoom" property to 1.  This ensures that the selected state of 
        MenuItems doesn't get dropped when the user mouses off of the text node of 
        the anchor element that represents a MenuItem's text label.
      */

      #productsandservices .yuimenuitemlabel {
      
        _zoom: 1;
      
      }

      #productsandservices .yuimenu .yuimenuitemlabel {

        _zoom: normal;

      }

        </style>


        <!-- Dependency source files -->

        <script type="text/javascript" src="yui_2.7.0b-lib/yahoo-dom-event/yahoo-dom-event.js"></script>
        <script type="text/javascript" src="yui_2.7.0b-lib/animation/animation.js"></script>
        <script type="text/javascript" src="yui_2.7.0b-lib/container/container_core.js"></script>

        <!-- Menu source file -->

        <script type="text/javascript" src="yui_2.7.0b-lib/menu/menu.js"></script>


        <!-- Page-specific script -->

        <script type="text/javascript">

            /*
                 Initialize and render the Menu when its elements are ready 
                 to be scripted.
            */

            YAHOO.util.Event.onContentReady("productsandservices"function () {

                /*
          Instantiate a Menu:  The first argument passed to the constructor
          is the id for the Menu element to be created, the second is an 
          object literal of configuration properties.
                */

                var oMenu = new YAHOO.widget.Menu(
                                    "productsandservices"
                                    {
                                        position: "static"
                                        hidedelay: 750
                                        lazyload: true, 
                                        effect: 
                                            effect: YAHOO.widget.ContainerEffect.FADE,
                                            duration: 0.25
                                        
                                    }
                            );


                /*
                     Define an array of object literals, each containing 
                     the data necessary to create a submenu.
                */

                var aSubmenuData = [
                
                    {
                        id: "communication"
                        itemdata: 
                            text: "360", url: "http://360.yahoo.com" },
                            text: "Alerts", url: "http://alerts.yahoo.com" },
                            text: "Avatars", url: "http://avatars.yahoo.com" },
                            text: "Groups", url: "http://groups.yahoo.com " },
                            text: "Internet Access", url: "http://promo.yahoo.com/broadband" },
                            {
                                text: "PIM"
                                submenu: 
                                            id: "pim"
                                            itemdata: [
                                                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: "Member Directory", url: "http://members.yahoo.com" },
                            text: "Messenger", url: "http://messenger.yahoo.com" },
                            text: "Mobile", url: "http://mobile.yahoo.com" },
                            text: "Flickr Photo Sharing", url: "http://www.flickr.com" },
                        ]
                    },

                    {
                        id: "shopping"
                        itemdata: [
                            text: "Auctions", url: "http://auctions.shopping.yahoo.com" },
                            text: "Autos", url: "http://autos.yahoo.com" },
                            text: "Classifieds", url: "http://classifieds.yahoo.com" },
                            text: "Flowers & Gifts", url: "http://shopping.yahoo.com/b:Flowers%20%26%20Gifts:20146735" },
                            text: "Real Estate", url: "http://realestate.yahoo.com" },
                            text: "Travel", url: "http://travel.yahoo.com" },
                            text: "Wallet", url: "http://wallet.yahoo.com" },
                            text: "Yellow Pages", url: "http://yp.yahoo.com" }                    
                        ]    
                    },
                    
                    {
                        id: "entertainment"
                        itemdata: [
                            text: "Fantasy Sports", url: "http://fantasysports.yahoo.com" },
                            text: "Games", url: "http://games.yahoo.com" },
                            text: "Kids", url: "http://www.yahooligans.com" },
                            text: "Music", url: "http://music.yahoo.com" },
                            text: "Movies", url: "http://movies.yahoo.com" },
                            text: "Radio", url: "http://music.yahoo.com/launchcast" },
                            text: "Travel", url: "http://travel.yahoo.com" },
                            text: "TV", url: "http://tv.yahoo.com" }              
                        
                    },
                    
                    {
                        id: "information",
                        itemdata: [
                            text: "Downloads", url: "http://downloads.yahoo.com" },
                            text: "Finance", url: "http://finance.yahoo.com" },
                            text: "Health", url: "http://health.yahoo.com" },
                            text: "Local", url: "http://local.yahoo.com" },
                            text: "Maps & Directions", url: "http://maps.yahoo.com" },
                            text: "My Yahoo!", url: "http://my.yahoo.com" },
                            text: "News", url: "http://news.yahoo.com" },
                            text: "Search", url: "http://search.yahoo.com" },
                            text: "Small Business", url: "http://smallbusiness.yahoo.com" },
                            text: "Weather", url: "http://weather.yahoo.com" }
                        ]
                    }                    
                ];


                // Subscribe to the Menu instance's "beforeRender" event

                oMenu.subscribe("beforeRender"function () {

          var nSubmenus = aSubmenuData.length,
            i;


                    if (this.getRoot() == this) {

            for (i = 0; i < nSubmenus; i++) {
                          this.getItem(i).cfg.setProperty("submenu", aSubmenuData[i]);
            }

                    }

                });


                /*
                     Call the "render" method with no arguments since the 
                     markup for this Menu instance is already exists in the page.
                */

                oMenu.render();
            
            });

        </script>   

    </head>
    <body class="yui-skin-sam" id="yahoo-com">

        <div id="doc" class="yui-t1">
            <div id="hd">
                <!-- start: your content here -->

                    <h1>Example: Website Left Nav Using Animation With Submenus From JavaScript (YUI Library)</h1>
        
                <!-- end: your content here -->
            </div>
            <div id="bd">

                <!-- start: primary column from outer template -->
                <div id="yui-main">
                    <div class="yui-b">
                        <!-- start: stack grids here -->

                        <p><strong>NOTE:</strong> <em>This example demonstrates how to add animation effects to a menu with submenus built using JavaScript.</em></p>
                        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sit amet metus. Nunc quam elit, posuere nec, auctor in, rhoncus quis, dui. Aliquam erat volutpat. Ut dignissim, massa sit amet dignissim cursus, quam lacus feugiat dolor, id aliquam leo tortor eget odio. Pellentesque orci arcu, eleifend at, iaculis sit amet, posuere eu, lorem. Aliquam erat volutpat. Phasellus vulputate. Vivamus id erat. Nulla facilisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Nunc gravida. Ut euismod, tortor eget convallis ullamcorper, arcu odio egestas pede, ut ornare urna elit vitae mauris. Aenean ullamcorper eros a lacus. Curabitur egestas tempus lectus. Donec et lectus et purus dapibus feugiat. Sed sit amet diam. Etiam ipsum leo, facilisis ac, rutrum nec, dignissim quis, tellus. Sed eleifend.</p>
                        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sit amet metus. Nunc quam elit, posuere nec, auctor in, rhoncus quis, dui. Aliquam erat volutpat. Ut dignissim, massa sit amet dignissim cursus, quam lacus feugiat dolor, id aliquam leo tortor eget odio. Pellentesque orci arcu, eleifend at, iaculis sit amet, posuere eu, lorem. Aliquam erat volutpat. Phasellus vulputate. Vivamus id erat. Nulla facilisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Nunc gravida. Ut euismod, tortor eget convallis ullamcorper, arcu odio egestas pede, ut ornare urna elit vitae mauris. Aenean ullamcorper eros a lacus. Curabitur egestas tempus lectus. Donec et lectus et purus dapibus feugiat. Sed sit amet diam. Etiam ipsum leo, facilisis ac, rutrum nec, dignissim quis, tellus. Sed eleifend.</p>

                        <!-- end: stack grids here -->
                    </div>
                </div>
                <!-- end: primary column from outer template -->

                <!-- start: secondary column from outer template -->
                <div class="yui-b">

                    <div id="productsandservices" class="yuimenu">
                        <div class="bd">
                            <ul class="first-of-type">
                                <li class="yuimenuitem"><a class="yuimenuitemlabel" href="#communication">Communication</a></li>
                                <li class="yuimenuitem"><a class="yuimenuitemlabel" href="http://shopping.yahoo.com">Shopping</a></li>
                                <li class="yuimenuitem"><a class="yuimenuitemlabel" href="http://entertainment.yahoo.com">Entertainment</a></li>
                                <li class="yuimenuitem"><a class="yuimenuitemlabel" href="#">Information</a></li>
                            </ul>
                        </div>
                    </div>
                    
                </div>
                <!-- end: secondary column from outer template -->
            </div>
            <div id="ft">

                <p>FOOTER: Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sit amet metus. Nunc quam elit, posuere nec, auctor in, rhoncus quis, dui. Aliquam erat volutpat. Ut dignissim, massa sit amet dignissim cursus, quam lacus feugiat.</p>

            </div>
        </div>
        
    </body>
</html><!-- presentbright.corp.yahoo.com uncompressed/chunked Thu Feb 19 10:53:17 PST 2009 -->

   
  
yui_2.7.0b.zip( 4,431 k)
Related examples in the same category
1. Layout components as border layout
2. Using a Layout with Grids CSS
3. Website Left Nav With Submenus From JavaScript (YUI Library)
4. Nested Layout - Example
5. Full Page Layout
6. Website Top Nav With Submenus From JavaScript
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.