<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Script Tutorials &#187; navigation | Script Tutorials | Web development</title> <atom:link href="http://www.script-tutorials.com/tag/navigation/feed/" rel="self" type="application/rss+xml" /><link>http://www.script-tutorials.com</link> <description>Tutorials for Web Developers</description> <lastBuildDate>Fri, 03 Feb 2012 06:07:51 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>CSS3 multilevel menu with transition and animation</title><link>http://www.script-tutorials.com/css3-multilevel-menu-with-transition-and-animation/</link> <comments>http://www.script-tutorials.com/css3-multilevel-menu-with-transition-and-animation/#comments</comments> <pubDate>Tue, 03 Jan 2012 15:02:49 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[transitions]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=1336</guid> <description><![CDATA[CSS3 multilevel menu with transition and animation In our new tutorial we&#8217;ll create a new nice CSS3 menu with interesting behavior, where I use css3 transition and animation. This is UL-LI-based multilevel menu. Here are samples and downloadable package: Live Demo download in package Ok, download the example files and lets start coding ! Step [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-4/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/102/thumb.png" alt="Creating A CSS3 Dropdown Menu #4" /> Creating A CSS3 Dropdown Menu #4</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-2/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/91/thumb.png" alt="Creating a CSS3 Dropdown Menu #2" /> Creating a CSS3 Dropdown Menu #2</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/87/thumb.png" alt="Creating a cool CSS3 Dropdown Menu" /> Creating a cool CSS3 Dropdown Menu</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="CSS3 multilevel menu with transition and animation" alt="CSS3 multilevel menu with transition and animation" src="http://www.script-tutorials.com/demos/211/thumb.png" /></div><p><strong>CSS3 multilevel menu with transition and animation</strong></p><p>In our new tutorial we&#8217;ll create a new nice CSS3 menu with interesting behavior, where I use css3 transition and animation. This is UL-LI-based multilevel menu.</p><p><span
id="more-1336"></span></p><hr
/><p>Here are samples and downloadable package:</p><h5 style="text-align: center;"><strong><a
title="CSS3 multilevel menu with transition and animation - demo 211" href="http://www.script-tutorials.com/demos/211/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 multilevel menu with transition and animation - package" href="http://www.script-tutorials.com/demos/211/source.zip" target="_blank">download in package</a></strong></h5><hr
/><p>Ok, download the example files and lets start coding !</p><hr
/><h3>Step 1. HTML</h3><p>As usual, we start with the HTML. Here are full html code of our menu. As you can see &#8211; this is multilevel menu built on UL-LI elements. But, it is a little unusual. I don&#8217;t wrap submenus into own UL element, I am going to hide them, and display if necessary.</p><h4>index.html</h4><pre class="brush:html">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;
    &lt;head&gt;
        &lt;meta charset=&quot;utf-8&quot; /&gt;
        &lt;title&gt;CSS3 multilevel menu with transition and animation | Script Tutorials&lt;/title&gt;

        &lt;link href=&quot;css/layout.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;&gt;
        &lt;link href=&quot;css/menu.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;/head&gt;
    &lt;body&gt;

        &lt;header&gt;
            &lt;h2&gt;CSS3 multilevel menu with transition and animation&lt;/h2&gt;
            &lt;a href=&quot;http://www.script-tutorials.com/css3-multilevel-menu-with-transition-and-animation/&quot; class=&quot;stuts&quot;&gt;Back to original tutorial on &lt;span&gt;Script Tutorials&lt;/span&gt;&lt;/a&gt;
        &lt;/header&gt;

        &lt;div class=&quot;container&quot;&gt;

            &lt;ul id=&quot;nav&quot;&gt;
                &lt;li&gt;
                    &lt;a href=&quot;#&quot;&gt;Parent link #1&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #11&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #12&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #13&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #14&lt;/a&gt;
                &lt;/li&gt;
                &lt;li&gt;
                    &lt;a href=&quot;#&quot;&gt;Parent link #2&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #21&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #22&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #23&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #24&lt;/a&gt;
                &lt;/li&gt;
                &lt;li&gt;
                    &lt;a href=&quot;#&quot;&gt;Parent link #3&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #31&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #32&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #33&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #34&lt;/a&gt;
                &lt;/li&gt;
                &lt;li&gt;
                    &lt;a href=&quot;#&quot;&gt;Parent link #4&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #41&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #42&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #43&lt;/a&gt;
                    &lt;a href=&quot;#&quot;&gt;Sub #44&lt;/a&gt;
                &lt;/li&gt;
            &lt;/ul&gt;

        &lt;/div&gt;

    &lt;/body&gt;
&lt;/html&gt;
</pre><h3>Step 2. CSS</h3><p>Here are the CSS styles of our menu. Maybe you&#8217;ve noticed &#8211; that in our html &#8211; I have two CSS files: layout.css and menu.css. The first file (layout.css) contain the styles of our test page. We will not publish these styles in this article, but if you wish &#8211; you can find these styles in our package.</p><h4>css/menu.css</h4><pre class="brush:css">
ul#nav {
    border: 1px solid #454545;
    display: block;
    height: 400px;
    margin: 0;
    padding: 15px;
    width: 160px;

    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -webkit-border-radius: 9px;
    -o-border-radius: 9px;
    border-radius: 9px;

    background: -moz-linear-gradient(#f1f7ff, #d9e1ec);
    background: -ms-linear-gradient(#f1f7ff, #d9e1ec);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f1f7ff), color-stop(100%, #d9e1ec));
    background: -webkit-linear-gradient(#f1f7ff, #d9e1ec);
    background: -o-linear-gradient(#f1f7ff, #d9e1ec);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f7ff', endColorstr='#d9e1ec');
    -ms-filter: &quot;progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f7ff', endColorstr='#d9e1ec')&quot;;
    background: linear-gradient(#f1f7ff, #d9e1ec);
}

@-moz-keyframes custom_effect {
    0% {
        background:rgba(255, 255, 255, 0.0);
        height: 60px;
    }
    33% {
        background:rgba(255, 255, 255, 0.0);
        height: 160px;
    }
    66% {
        background:rgba(255, 255, 255, 1.0);
    }
    100% {
        background:rgba(190, 220, 255, 0.8);
        height: 135px;
    }
}
@-webkit-keyframes custom_effect {
    0% {
        background:rgba(255, 255, 255, 0.0);
        height: 60px;
    }
    33% {
        background:rgba(255, 255, 255, 0.0);
        height: 160px;
    }
    66% {
        background:rgba(255, 255, 255, 1.0);
    }
    100% {
        background:rgba(190, 220, 255, 0.8);
        height: 135px;
    }
}
ul#nav li {
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -webkit-border-radius: 9px;
    -o-border-radius: 9px;
    border-radius: 9px;

    background-color:transparent;
    border: 1px solid #454545;
    display: block;
    height: 60px;
    line-height: 60px;
    margin-bottom: 15px;
    overflow: hidden;
}
ul#nav li:hover {
    -moz-animation-name: custom_effect;
    -moz-animation-duration: 0.4s;
    -moz-animation-timing-function: ease;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: normal;
    -moz-animation-delay: 0;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;

    -webkit-animation-name: custom_effect;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;

    background:rgba(190, 220, 255, 0.8);
    height: 135px;
}
ul#nav a {
    border-style: none;
    border-width: 0;
    color: #181818;
    cursor: pointer;
    float: left;
    font-size: 13px;
    font-weight: bold;
    line-height: 30px;
    margin-top: 100px;
    padding-left: 18px;
    text-align: left;
    text-decoration: none;
    text-shadow: 0 1px 1px #FFFFFF;
    vertical-align: middle;

    -moz-transition: all 0.1s 0.4s;
    -ms-transition: all 0.1s 0.4s;
    -o-transition: all 0.1s 0.4s;
    -webkit-transition: all 0.1s 0.4s;
    transition: all 0.1s 0.4s;
}
ul#nav a:hover {
    text-decoration: underline;
}
ul#nav li a:first-child {
    display: block;
    float: none;
    line-height: 60px;
    margin-top: 0;
}
ul#nav li:hover a:first-child {
    line-height: 60px;
}
ul#nav li:hover a {
    margin-top: 0;
}
</pre><hr
/><h5 style="text-align: center;"><strong><a
title="CSS3 multilevel menu with transition and animation - demo 211" href="http://www.script-tutorials.com/demos/211/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 multilevel menu with transition and animation - package" href="http://www.script-tutorials.com/demos/211/source.zip" target="_blank" rel="nofollow">download in package</a></strong></h5><hr
/><h3>Conclusion</h3><p>Hope you enjoyed with new menu, don&#8217;t forget to tell thanks and leave a comment <img
src='http://www.script-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Good luck!</p><div
class="shr-publisher-1336"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-4/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/102/thumb.png" alt="Creating A CSS3 Dropdown Menu #4" /> <br
/> Creating A CSS3 Dropdown Menu #4</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-2/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/91/thumb.png" alt="Creating a CSS3 Dropdown Menu #2" /> <br
/> Creating a CSS3 Dropdown Menu #2</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/87/thumb.png" alt="Creating a cool CSS3 Dropdown Menu" /> <br
/> Creating a cool CSS3 Dropdown Menu</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/css3-multilevel-menu-with-transition-and-animation/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Creating Fantastic Animated Buttons using CSS3</title><link>http://www.script-tutorials.com/how-to-create-a-pure-css3-animated-buttons/</link> <comments>http://www.script-tutorials.com/how-to-create-a-pure-css3-animated-buttons/#comments</comments> <pubDate>Thu, 17 Nov 2011 17:09:57 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[animated]]></category> <category><![CDATA[buttons]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[css3 animation]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=1218</guid> <description><![CDATA[How to Create a Pure CSS3 animated buttons Today I want to share some experience with creating interactive animated elements (buttons) with CSS3. In our example I going to use hover and active states of our buttons. Please pay attention that our demo will work in browsers that support used CSS3 properties. Live Demo download [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/creating-css3-animated-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/126/thumb.png" alt="Creating A CSS3 Animated Menu" /> Creating A CSS3 Animated Menu</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-4/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/102/thumb.png" alt="Creating A CSS3 Dropdown Menu #4" /> Creating A CSS3 Dropdown Menu #4</a></li><li> <a
href="http://www.script-tutorials.com/how-to-do-pure-css3-photo-gallery/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/171/thumb.png" alt="How to Create a Pure CSS3 Animated Photo Gallery" /> How to Create a Pure CSS3 Animated Photo Gallery</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="Pure CSS3 animated buttons" alt="Pure CSS3 animated buttons" src="http://www.script-tutorials.com/demos/184/thumb.png"></div><p><strong>How to Create a Pure CSS3 animated buttons</strong><br
/> <br
/>Today I want to share some experience with creating interactive animated elements (buttons) with CSS3. In our example I going to use hover and active states of our buttons. Please pay attention that our demo will work in browsers that support used CSS3 properties.<br
/> <span
id="more-1218"></span></p><h5 style="text-align: center;"><strong><a
title="Pure CSS3 animated buttons - demo 184" href="http://www.script-tutorials.com/demos/184/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="Pure CSS3 animated buttons - package" href="http://www.script-tutorials.com/demos/184/source.zip" target="_blank">download result</a></strong></h5><hr
/><p>Ok, download the example files and lets start coding !</p><hr
/><h3>Step 1. HTML</h3><p>Here are full html code of our result. Pay attention to classes of buttons. In our experiment I used 2 different types of buttons. Each type have own behavior. Each button consist of few inner SPAN elements.</p><h4>index.html</h4><pre class="brush:html">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;
    &lt;head&gt;
        &lt;meta charset=&quot;utf-8&quot; /&gt;
        &lt;title&gt;Pure CSS3 animated buttons | Script Tutorials&lt;/title&gt;
        &lt;link href=&quot;css/main.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
        &lt;link href=&quot;css/buttons.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;

        &lt;!--[if lt IE 9]&gt;
          &lt;script src=&quot;http://html5shiv.googlecode.com/svn/trunk/html5.js&quot;&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div class=&quot;container&quot; id=&quot;container&quot;&gt;
            &lt;div class=&quot;buttons&quot;&gt;
                &lt;a href=&quot;#&quot; class=&quot;but1&quot;&gt;
                    &lt;span class=&quot;icon&quot;&gt;&lt;/span&gt;
                    &lt;span class=&quot;title&quot;&gt;Button #1&lt;/span&gt;
                    &lt;span class=&quot;icon2&quot;&gt;&lt;/span&gt;
                &lt;/a&gt;
                &lt;a href=&quot;#&quot; class=&quot;but1&quot;&gt;
                    &lt;span class=&quot;icon&quot;&gt;&lt;/span&gt;
                    &lt;span class=&quot;title&quot;&gt;Button #2&lt;/span&gt;
                    &lt;span class=&quot;icon2&quot;&gt;&lt;/span&gt;
                &lt;/a&gt;
                &lt;a href=&quot;#&quot; class=&quot;but1&quot;&gt;
                    &lt;span class=&quot;icon&quot;&gt;&lt;/span&gt;
                    &lt;span class=&quot;title&quot;&gt;Button #3&lt;/span&gt;
                    &lt;span class=&quot;icon2&quot;&gt;&lt;/span&gt;
                &lt;/a&gt;
                &lt;div style=&quot;clear:both&quot;&gt;&lt;/div&gt;

                &lt;a href=&quot;#&quot; class=&quot;but2&quot;&gt;
                    &lt;span class=&quot;title&quot;&gt;Join us&lt;/span&gt;
                    &lt;span class=&quot;extra&quot;&gt;&lt;span&gt;For a free&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;icon&quot;&gt;&lt;/span&gt;
                &lt;/a&gt;
                &lt;a href=&quot;#&quot; class=&quot;but2&quot;&gt;
                    &lt;span class=&quot;title&quot;&gt;Try to search&lt;/span&gt;
                    &lt;span class=&quot;extra&quot;&gt;&lt;input type=&quot;text&quot; /&gt;&lt;/span&gt;
                    &lt;span class=&quot;icon&quot;&gt;&lt;/span&gt;
                &lt;/a&gt;
                &lt;a href=&quot;#&quot; class=&quot;but2&quot;&gt;
                    &lt;span class=&quot;title&quot;&gt;Subscribe&lt;/span&gt;
                    &lt;span class=&quot;extra&quot;&gt;&lt;input type=&quot;text&quot; /&gt;&lt;/span&gt;
                    &lt;span class=&quot;icon&quot;&gt;&lt;/span&gt;
                &lt;/a&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        &lt;footer&gt;
            &lt;h2&gt;Pure CSS3 animated buttons&lt;/h2&gt;
            &lt;a href=&quot;http://www.script-tutorials.com/how-to-create-a-pure-css3-animated-buttons/&quot; class=&quot;stuts&quot;&gt;Back to original tutorial on &lt;span&gt;Script Tutorials&lt;/span&gt;&lt;/a&gt;
        &lt;/footer&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre><h3>Step 2. CSS</h3><p>Now &#8211; our CSS styles. First file is page layout</p><h4>css/main.css</h4><pre class="brush:css">
/* page layout */
*{
    margin:0;
    padding:0;
}
body {
    color:#fff;
    font:14px/1.3 Arial,sans-serif;
    background:transparent url(../images/bg.gif) repeat top left;
}
footer {
    background-color:#212121;
    bottom:0;
    box-shadow: 0 -1px 2px #111111;
    -moz-box-shadow: 0 -1px 2px #111111;
    -webkit-box-shadow: 0 -1px 2px #111111;
    display:block;
    height:70px;
    left:0;
    position:fixed;
    width:100%;
    z-index:100;
}
footer h2{
    font-size:22px;
    font-weight:normal;
    left:50%;
    margin-left:-400px;
    padding:22px 0;
    position:absolute;
    width:540px;
}
footer a.stuts,a.stuts:visited{
    border:none;
    text-decoration:none;
    color:#fcfcfc;
    font-size:14px;
    left:50%;
    line-height:31px;
    margin:23px 0 0 110px;
    position:absolute;
    top:0;
}
footer .stuts span {
    font-size:22px;
    font-weight:bold;
    margin-left:5px;
}
.container {
    margin:20px auto;
    padding:20px;
    position:relative;
    width:800px;
}
</pre><p>And now &#8211; styles of our buttons</p><h4>css/buttons.css</h4><pre class="brush:css">
/*buttons #1*/
.buttons {
    overflow:hidden;
}
.but1{
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;

    box-shadow:0px 0px 7px rgba(0,0,0,0.4) inset, 0px 0px 0px 4px rgba(255,255,255,0.1);
    -moz-box-shadow:0px 0px 7px rgba(0,0,0,0.4) inset, 0px 0px 0px 4px rgba(255,255,255,0.1);
    -webkit-box-shadow:0px 0px 7px rgba(0,0,0,0.4) inset, 0px 0px 0px 4px rgba(255,255,255,0.1);

    background-color:#f4f5fe;
    display:block;
    float:left;
    margin:10px;
    overflow:hidden;
    padding:10px 15px;
    position:relative;
    text-decoration:none;

    transition:all 0.5s ease-in-out;
    -moz-transition:all 0.5s ease-in-out;
    -o-transition:all 0.5s ease-in-out;
    -webkit-transition:all 0.5s ease-in-out;
}
.but1 .icon{
    background:transparent url(../images/download.png) no-repeat top left;
    float:left;
    height:32px;
    width:45px;

    transition:all 0.5s ease-in-out;
    -moz-transition:all 0.5s ease-in-out;
    -o-transition:all 0.5s ease-in-out;
    -webkit-transition:all 0.5s ease-in-out;
}
.but1 .title{
    font-size:18px;
    color:#000;
    display:block;
    float:left;
    font-weight:bold;
    line-height:32px;
}
.but1 .icon2{
    background:transparent url(../images/download2.png) no-repeat top left;
    height:32px;
    left:20px;
    opacity:0;
    position:absolute;
    top:-15px;
    width:32px;
}
.but1:hover{
    background-color:#e3e3ff;

    box-shadow:0px 0px 4px rgba(0,0,0,0.5) inset, 0px 0px 0px 4px rgba(51,51,204,0.5);
    -moz-box-shadow:0px 0px 4px rgba(0,0,0,0.5) inset, 0px 0px 0px 4px rgba(51,51,204,0.5);
    -webkit-box-shadow:0px 0px 4px rgba(0,0,0,0.5) inset, 0px 0px 0px 4px rgba(51,51,204,0.5);

   -webkit-transition-delay: 0.5s;
   -moz-transition-delay: 0.5s;
   -o-transition-delay: 0.5s;
   -ms-transition-delay: 0.5s;
   transition-delay: 0.5s;
}
.but1:hover .icon{
    transform:rotate(-90deg) scale(0.8);
    -ms-transform:rotate(-90deg) scale(0.8);
    -moz-transform:rotate(-90deg) scale(0.8);
    -o-transform:rotate(-90deg) scale(0.8);
    -webkit-transform:rotate(-90deg) scale(0.8);
}
.but1:active .icon{
    opacity:0;
}
.but1:active .icon2{
    opacity:1;
    -webkit-animation:slideDown1 1.0s linear infinite;
    -moz-animation:slideDown1 1.0s linear infinite;
    animation:slideDown1 1.0s linear infinite;
}
.but1:active{
    background-color:#c1c1ff;

    box-shadow:0 2px 4px rgba(0, 0, 0, 0.5) inset, 0px 0px 0px 4px rgba(51,51,204,0.8);
    -moz-box-shadow:0 2px 4px rgba(0, 0, 0, 0.5) inset, 0px 0px 0px 4px rgba(51,51,204,0.8);
    -webkit-box-shadow:0 2px 4px rgba(0, 0, 0, 0.5) inset, 0px 0px 0px 4px rgba(51,51,204,0.8);
}

@keyframes slideDown1{
    0% {
        top: -30px;
    }
    100% {
        top: 55px;
    }
}
@-webkit-keyframes slideDown1{
    0% {
        top: -30px;
    }
    100% {
        top: 55px;
    }
}
@-moz-keyframes slideDown1{
    0% {
        top: -30px;
    }
    100% {
        top: 55px;
    }
}

/*buttons #2*/
.but2{
    border-radius:15px;
    -moz-border-radius:15px;
    -webkit-border-radius:15px;

    background-color:#99cc99;
    float:left;
    height:40px;
    margin:10px;
    overflow:hidden;
    padding-left:20px;
    position:relative;
    text-decoration:none;

    transition:all 0.5s linear;
    -moz-transition:all 0.5s linear;
    -o-transition:all 0.5s linear;
    -webkit-transition:all 0.5s linear;
}
.but2 .title{
    color:#000000;
    display:block;
    float:left;
    font-size:18px;
    font-weight:bold;
    line-height:40px;

    transition:all 0.2s linear;
    -moz-transition:all 0.2s linear;
    -o-transition:all 0.2s linear;
    -webkit-transition:all 0.2s linear;
}
.but2 .extra{
    background-color:#63707e;
    color:#fff;
    float:left;
    font-size:18px;
    line-height:40px;
    opacity:0;
    position:relative;
    text-transform:uppercase;
    width:0px;

    transition:all 0.3s linear;
    -moz-transition:all 0.3s linear;
    -o-transition:all 0.3s linear;
    -webkit-transition:all 0.3s linear;
}
.but2 .extra span, .but2 .extra input {
    display:none;
}
.but2 .icon{
    background:transparent url(../images/right.png) no-repeat center center;
    float:left;
    height:40px;
    width:40px;

    transition:all 0.3s linear;
    -moz-transition:all 0.3s linear;
    -o-transition:all 0.3s linear;
    -webkit-transition:all 0.3s linear;
}
.but2:hover .extra span, .but2:hover .extra input{
    display:inline-block;
}
.but2:hover .extra{
    margin-left:10px;
    opacity: 1;
    padding-left:10px;
    padding-right:10px;
    text-align:center;
    width:150px;
}
.but2:hover .icon{
    transform:rotate(180deg);
    -ms-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
}
</pre><hr
/><h5 style="text-align: center;"><strong><a
title="Pure CSS3 animated buttons - demo 184" href="http://www.script-tutorials.com/demos/184/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="Pure CSS3 animated buttons - package" href="http://www.script-tutorials.com/demos/184/source.zip" target="_blank" rel="nofollow">download result</a></strong></h5><hr
/><h3>Conclusion</h3><p>Thats all, all was really easy, isn&#8217;t it? The result was great. I hope that our nice tips help you. Good luck!</p><div
class="shr-publisher-1218"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/creating-css3-animated-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/126/thumb.png" alt="Creating A CSS3 Animated Menu" /> <br
/> Creating A CSS3 Animated Menu</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-4/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/102/thumb.png" alt="Creating A CSS3 Dropdown Menu #4" /> <br
/> Creating A CSS3 Dropdown Menu #4</a></li><li> <a
href="http://www.script-tutorials.com/how-to-do-pure-css3-photo-gallery/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/171/thumb.png" alt="How to Create a Pure CSS3 Animated Photo Gallery" /> <br
/> How to Create a Pure CSS3 Animated Photo Gallery</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/how-to-create-a-pure-css3-animated-buttons/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Creating a Marble Style CSS3 Navigation Menu</title><link>http://www.script-tutorials.com/css3-green-marble-menu/</link> <comments>http://www.script-tutorials.com/css3-green-marble-menu/#comments</comments> <pubDate>Tue, 08 Nov 2011 17:13:36 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[marble style]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[tutorial]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=1194</guid> <description><![CDATA[CSS3 Green Marble Menu In our new tutorial we&#8217;ll create a new horizontal dropdown CSS3 menu. This menu will be suitable for black and for white websites. It made of green marble colors. Here are final result (what we will creating): Here are samples and downloadable package: Live Demo download in package Ok, download the [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/162/thumb.png" alt="Creating an Accordian like CSS3 Onclick Vertical Navigation" /> Creating an Accordian like CSS3 Onclick Vertical Navigation</a></li><li> <a
href="http://www.script-tutorials.com/css3-bottom-navigation-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/170/thumb.png" alt="Creating a Toggle CSS3 Bottom Navigation Bar" /> Creating a Toggle CSS3 Bottom Navigation Bar</a></li><li> <a
href="http://www.script-tutorials.com/css3-metal-menu-with-icons/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/152/thumb.png" alt="Creating a Multilevel CSS3 Metal Navigation with icons" /> Creating a Multilevel CSS3 Metal Navigation with icons</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="CSS3 Green Marble Menu" alt="CSS3 Green Marble Menu" src="http://www.script-tutorials.com/demos/179/thumb.png" /></div><p><strong>CSS3 Green Marble Menu</strong></p><p>In our new tutorial we&#8217;ll create a new horizontal dropdown CSS3 menu. This menu will be suitable for black and for white websites. It made of green marble colors.</p><p><span
id="more-1194"></span></p><hr
/><p>Here are final result (what we will creating):</p><p><img
src="http://www.script-tutorials.com/demos/179/css3_marble_menu.jpg" alt="Green Marble Dropdown Menu" /></p><p>Here are samples and downloadable package:</p><h5 style="text-align: center;"><strong><a
title="CSS3 Green Marble Menu - demo 179" href="http://www.script-tutorials.com/demos/179/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 Green Marble Menu - package" href="http://www.script-tutorials.com/demos/179/source.zip" target="_blank">download in package</a></strong></h5><hr
/><p>Ok, download the example files and lets start coding !</p><hr
/><h3>Step 1. HTML</h3><p>As usual, we start with the HTML. Here are full html code of our menu. Today &#8211; this is 2 levels menu. Whole menu built on UL-LI elements.</p><h4>index.html</h4><pre class="brush:html">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;
    &lt;head&gt;
        &lt;meta charset=&quot;utf-8&quot; /&gt;
        &lt;title&gt;CSS3 Green Marble Menu | Script Tutorials&lt;/title&gt;

        &lt;link rel=&quot;stylesheet&quot; href=&quot;css/layout.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
        &lt;link rel=&quot;stylesheet&quot; href=&quot;css/menu.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div class=&quot;container&quot;&gt;
            &lt;div class=&quot;content&quot;&gt;

                &lt;ul id=&quot;nav&quot;&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;current&quot;&gt;HTML/CSS&lt;/a&gt;
                        &lt;ul class=&quot;subs&quot;&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 1&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 2&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 3&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 4&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;jQuery/JS&lt;/a&gt;
                        &lt;ul class=&quot;subs&quot;&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 1&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 2&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 3&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 4&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;PHP&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;MySQL&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;XSLT&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;

            &lt;/div&gt;
        &lt;/div&gt;

        &lt;footer&gt;
            &lt;h2&gt;CSS3 Green Marble Menu&lt;/h2&gt;
            &lt;a href=&quot;http://www.script-tutorials.com/css3-green-marble-menu/&quot; class=&quot;stuts&quot;&gt;Back to original tutorial on &lt;span&gt;Script Tutorials&lt;/span&gt;&lt;/a&gt;
        &lt;/footer&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre><h3>Step 2. CSS</h3><p>Here are the CSS styles of our dropdown menu. Maybe you&#8217;ve noticed &#8211; that in our html &#8211; I have two CSS files: layout.css and menu.css. The first file (layout.css) contain the styles of our test page. We will not publish these styles in this article, but if you wish &#8211; you can find these styles in the package.</p><h4>css/menu.css</h4><pre class="brush:css">
ul#nav {
    color: #232223;
    display:block;
    float:right;
    font: 16px/26px Georgia,&quot;Times New Roman&quot;,Times,serif;
}
ul#nav,ul#nav ul {
    list-style:none;
}
ul#nav .subs {
    background-color: rgba(121,160,160,0.8);
    border:1px solid #887963;
    display:none;
    float:left;
    left:0;
    padding:10px;
    position:absolute;
    top:100%;
}
ul#nav li:hover&gt;* {
    display:block;
}
ul#nav li:hover {
    position:relative;
}
ul#nav ul .subs {
    left:100%;
    position:absolute;
    top:0;
}
ul#nav ul {
    padding:0 5px 5px;
}
ul#nav li {
    display:inline;
    float:left;
}
ul#nav a {
    color: #353435;
    float: left;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 14px;
    min-width:60px;
    padding: 60px 20px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 0 #B4C6C6;
    text-transform: uppercase;
}
ul#nav &gt; li:hover &gt; a {
    border-top: 5px solid #887963;
    color: #1e1e1e;
    padding-top: 55px;
}
ul#nav li a.current, ul#nav li a.current:hover {
    background: url(&quot;../images/nav_current.png&quot;) no-repeat scroll center top transparent;
    border: medium none;
    color: #fff;
    padding-top: 60px;
    text-shadow: none;
}
ul#nav ul a {
    color:#000;
    font-size:12px;
    font-weight:bold;
    padding:5px;
    text-shadow:#fff 0 0 0;

    border-radius:0;
    -moz-border-radius:0;
    -webkit-border-radius:0;
}
ul#nav ul li:hover&gt;a {
    letter-spacing:2px;
}
</pre><hr
/><h5 style="text-align: center;"><strong><a
title="CSS3 Green Marble Menu - demo 179" href="http://www.script-tutorials.com/demos/179/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 Green Marble Menu - package" href="http://www.script-tutorials.com/demos/179/source.zip" target="_blank" rel="nofollow">download in package</a></strong></h5><hr
/><h3>Conclusion</h3><p>Hope you enjoyed with new menu, don&#8217;t forget to tell thanks and leave a comment <img
src='http://www.script-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Good luck!</p><div
class="shr-publisher-1194"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/162/thumb.png" alt="Creating an Accordian like CSS3 Onclick Vertical Navigation" /> <br
/> Creating an Accordian like CSS3 Onclick Vertical Navigation</a></li><li> <a
href="http://www.script-tutorials.com/css3-bottom-navigation-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/170/thumb.png" alt="Creating a Toggle CSS3 Bottom Navigation Bar" /> <br
/> Creating a Toggle CSS3 Bottom Navigation Bar</a></li><li> <a
href="http://www.script-tutorials.com/css3-metal-menu-with-icons/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/152/thumb.png" alt="Creating a Multilevel CSS3 Metal Navigation with icons" /> <br
/> Creating a Multilevel CSS3 Metal Navigation with icons</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/css3-green-marble-menu/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Creating a Toggle CSS3 Bottom Navigation Bar</title><link>http://www.script-tutorials.com/css3-bottom-navigation-menu/</link> <comments>http://www.script-tutorials.com/css3-bottom-navigation-menu/#comments</comments> <pubDate>Tue, 25 Oct 2011 17:09:15 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[bottom]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[toggle]]></category> <category><![CDATA[tutorial]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=1147</guid> <description><![CDATA[CSS3 Bottom navigation menu Today I prepared nice CSS3 bottom navigation menu for you. This is will sliding drop down menu with fixed position in bottom of screen. Also, I going to use jQuery for sliding effects. Here are final result (what we will creating): Here are samples and downloadable package: Live Demo download in [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/162/thumb.png" alt="Creating an Accordian like CSS3 Onclick Vertical Navigation" /> Creating an Accordian like CSS3 Onclick Vertical Navigation</a></li><li> <a
href="http://www.script-tutorials.com/css3-green-marble-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/179/thumb.png" alt="Creating a Marble Style CSS3 Navigation Menu" /> Creating a Marble Style CSS3 Navigation Menu</a></li><li> <a
href="http://www.script-tutorials.com/css3-metal-menu-with-icons/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/152/thumb.png" alt="Creating a Multilevel CSS3 Metal Navigation with icons" /> Creating a Multilevel CSS3 Metal Navigation with icons</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="CSS3 Bottom navigation menu" alt="CSS3 Bottom navigation menu" src="http://www.script-tutorials.com/demos/170/thumb.png" /></div><p><strong>CSS3 Bottom navigation menu</strong></p><p>Today I prepared nice CSS3 bottom navigation menu for you. This is will sliding drop down menu with fixed position in bottom of screen. Also, I going to use jQuery for sliding effects.</p><p><span
id="more-1147"></span></p><hr
/><p>Here are final result (what we will creating):</p><p><img
src="http://www.script-tutorials.com/demos/170/css3_bottom_menu.jpg" alt="CSS3 Bottom menu" /></p><p>Here are samples and downloadable package:</p><h5 style="text-align: center;"><strong><a
title="CSS3 Bottom navigation menu - demo 170" href="http://www.script-tutorials.com/demos/170/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 Bottom navigation menu - package" href="http://www.script-tutorials.com/demos/170/source.zip" target="_blank">download in package</a></strong></h5><hr
/><p>Ok, download the example files and lets start coding !</p><hr
/><h3>Step 1. HTML</h3><p>Here are html source code of our page with menu. Whole menu built on UL-LI elements.</p><h4>index.html</h4><pre class="brush:html">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;
    &lt;head&gt;
        &lt;meta charset=&quot;utf-8&quot; /&gt;
        &lt;title&gt;CSS3 Bottom navigation menu | Script Tutorials&lt;/title&gt;

        &lt;link rel=&quot;stylesheet&quot; href=&quot;css/layout.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
        &lt;link rel=&quot;stylesheet&quot; href=&quot;css/menu.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;

        &lt;!--[if lt IE 9]&gt;
          &lt;script src=&quot;http://html5shiv.googlecode.com/svn/trunk/html5.js&quot;&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.5.2.min.js&quot;&gt;&lt;/script&gt;
        &lt;script type=&quot;text/javascript&quot; src=&quot;js/script.js&quot;&gt;&lt;/script&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div class=&quot;menuContent&quot;&gt;
            &lt;a class=&quot;slider&quot;&gt;&lt;img alt=&quot;&quot; id=&quot;bot&quot; src=&quot;images/arrow_bottom.png&quot;&gt;&lt;/a&gt;
            &lt;ul id=&quot;nav&quot;&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/t1.png&quot; /&gt; Home&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;
                    &lt;ul id=&quot;1&quot;&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 1&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 2&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 3&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 4&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 5&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                    &lt;a href=&quot;#&quot; class=&quot;sub&quot; tabindex=&quot;1&quot;&gt;&lt;img src=&quot;images/t2.png&quot; /&gt;HTML/CSS&lt;/a&gt;
                &lt;/li&gt;
                &lt;li&gt;
                    &lt;ul id=&quot;2&quot;&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 6&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 7&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 8&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 9&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 10&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                    &lt;a href=&quot;#&quot; class=&quot;sub&quot; tabindex=&quot;1&quot;&gt;&lt;img src=&quot;images/t3.png&quot; /&gt;jQuery/JS&lt;/a&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/t2.png&quot; /&gt;PHP&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/div&gt;
        &lt;footer&gt;
            &lt;h2&gt;CSS3 Bottom navigation menu&lt;/h2&gt;
            &lt;a href=&quot;http://www.script-tutorials.com/css3-bottom-navigation-menu/&quot; class=&quot;stuts&quot;&gt;Back to original tutorial on &lt;span&gt;Script Tutorials&lt;/span&gt;&lt;/a&gt;
        &lt;/footer&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre><h3>Step 2. CSS</h3><p>Here are the CSS styles of our menu. Maybe you&#8217;ve noticed &#8211; that in our html &#8211; I have two CSS files: layout.css and menu.css. The first file (layout.css) contain the styles of our test page. We will not publish these styles in this article, but if you wish &#8211; you can find these styles in the package.</p><h4>css/menu.css</h4><pre class="brush:css">
.menuContent {
    background-color:#FFF;
    background-image: -moz-linear-gradient(center top, #FFF, #FFF, #FFF, #ddd);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#FFF), color-stop(0.5, #FFF), to(#ddd));
    border:1px solid #C7C7C7;
    bottom: 70px;
    left: 300px;
    padding: 0 15px 5px;
    position: fixed;
    width:520px;

    -moz-border-radius-topright: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    -moz-box-shadow: 3px -3px 5px #B8B8B8;
    -webkit-box-shadow: 3px -3px 5px #B8B8B8;
    box-shadow: 3px -3px 5px #B8B8B8;
}

.menuContent a.slider {
    background-color:#fff;
    background-image: -moz-linear-gradient(center top , #ddd, #FFF);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#ddd), to(#FFF));
    border: 1px solid #C7C7C7;
    border-bottom:none;
    cursor: pointer;
    float:right;
    height: 8px;
    margin:-15px 30px 0 0;
    padding:3px 20px;
    width: 8px;
    z-index: 2001;

    -moz-border-radius-topright: 7px;
    -moz-border-radius-topleft: 7px;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
    -moz-box-shadow: 3px -2px 3px #B8B8B8;
    -webkit-box-shadow: 3px -2px 3px #B8B8B8;
    box-shadow: 3px -2px 3px #B8B8B8;
}

.menuContent a.slider img {
    padding-bottom: 3px;
}

#nav {
    list-style: none;
}

#nav li {
    display: inline-block;
    margin: 10px;
}

#nav li a {
    border: 1px solid #ccc;
    color:#858585;
    display: block;
    padding: 5px 10px;
    text-align:center;
    text-decoration:none;
    width: auto;

    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-topleft: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
}

#nav li a:hover, #nav li a.active {
    background-color:#ddd;
}

#nav li ul {
    display:none;
}

#nav li ul li {
    margin: 5px 0;
    display: block;
}

#nav li a img {
    border-width: 0px;
    margin-right: 8px;
    vertical-align: middle;
}

#nav ul li a img {
    background: url(&quot;../images/bulb.png&quot;) no-repeat;
    border-width:0px;
    height:16px;
    line-height:22px;
    margin-right:5px;
    vertical-align:middle;
    width:16px;
}
</pre><h3>Step 3. jQuery</h3><p>Finally, here are a little of JS code for our menu (for different slide effects).</p><h4>js/script.js</h4><pre class="brush:js">
$(function(){
    $('.slider').click(function () {
        $('#nav').slideToggle(300);

        var img = $(this).find('img');
        if ($(img).attr('id') == 'bot') {
            $(img).attr('src', 'images/arrow_top.png');
            $(img).attr('id', 'top');
        } else {
            $(img).attr('src', 'images/arrow_bottom.png');
            $(img).attr('id', 'bot');
        }
    });

    $('.sub').click(function () {
        var cur = $(this).prev();
        $('#nav li ul').each(function() {
            if ($(this)[0] != $(cur)[0])
                $(this).slideUp(300);
        });
        $(cur).slideToggle(300);
    });
});
</pre><h3>Step 4. Images</h3><p>Last step &#8211; used images:</p><pre class="sources">
<img alt="bg.jpg" src="http://www.script-tutorials.com/demos/170/images/bg.jpg" />
<img alt="t1.png" src="http://www.script-tutorials.com/demos/170/images/t1.png" />
<img alt="t2.png" src="http://www.script-tutorials.com/demos/170/images/t2.png" />
<img alt="t3.png" src="http://www.script-tutorials.com/demos/170/images/t3.png" />
<img alt="bulb.png" src="http://www.script-tutorials.com/demos/170/images/bulb.png" />
<img alt="arrow_bottom.png" src="http://www.script-tutorials.com/demos/170/images/arrow_bottom.png" />
<img alt="arrow_top.png" src="http://www.script-tutorials.com/demos/170/images/arrow_top.png" />
</pre><hr
/><h5 style="text-align: center;"><strong><a
title="CSS3 Bottom navigation menu - demo 170" href="http://www.script-tutorials.com/demos/170/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 Bottom navigation menu - package" href="http://www.script-tutorials.com/demos/170/source.zip" target="_blank" rel="nofollow">download in package</a></strong></h5><hr
/><h3>Conclusion</h3><p>Hope you enjoyed with our new css3 bottom sliding menu, don&#8217;t forget to tell thanks and leave a comment <img
src='http://www.script-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Good luck!</p><div
class="shr-publisher-1147"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/162/thumb.png" alt="Creating an Accordian like CSS3 Onclick Vertical Navigation" /> <br
/> Creating an Accordian like CSS3 Onclick Vertical Navigation</a></li><li> <a
href="http://www.script-tutorials.com/css3-green-marble-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/179/thumb.png" alt="Creating a Marble Style CSS3 Navigation Menu" /> <br
/> Creating a Marble Style CSS3 Navigation Menu</a></li><li> <a
href="http://www.script-tutorials.com/css3-metal-menu-with-icons/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/152/thumb.png" alt="Creating a Multilevel CSS3 Metal Navigation with icons" /> <br
/> Creating a Multilevel CSS3 Metal Navigation with icons</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/css3-bottom-navigation-menu/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Creating an Accordian like CSS3 Onclick Vertical Navigation</title><link>http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/</link> <comments>http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/#comments</comments> <pubDate>Thu, 13 Oct 2011 18:02:26 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[accordian]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[how-to]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[tutorial]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=1103</guid> <description><![CDATA[CSS3 Onclick Vertical Metal menu In our new tutorial we will create a cool CSS3 vertical menu with icons in metal style. The submenu will be opened by pressing the main menu items. Here are final result (what we will creating): Here are samples and downloadable package: Live Demo download in package Ok, download the [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/css3-bottom-navigation-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/170/thumb.png" alt="Creating a Toggle CSS3 Bottom Navigation Bar" /> Creating a Toggle CSS3 Bottom Navigation Bar</a></li><li> <a
href="http://www.script-tutorials.com/css3-metal-menu-with-icons/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/152/thumb.png" alt="Creating a Multilevel CSS3 Metal Navigation with icons" /> Creating a Multilevel CSS3 Metal Navigation with icons</a></li><li> <a
href="http://www.script-tutorials.com/css3-green-marble-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/179/thumb.png" alt="Creating a Marble Style CSS3 Navigation Menu" /> Creating a Marble Style CSS3 Navigation Menu</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="CSS3 Onclick Vertical Metal menu" alt="CSS3 Onclick Vertical Metal menu" src="http://www.script-tutorials.com/demos/162/thumb.png" /></div><p><strong>CSS3 Onclick Vertical Metal menu</strong></p><p>In our new tutorial we will create a cool CSS3 vertical menu with icons in metal style. The submenu will be opened by pressing the main menu items.</p><p><span
id="more-1103"></span></p><hr
/><p>Here are final result (what we will creating):</p><p><img
src="http://www.script-tutorials.com/demos/162/metal_menu_vertical.jpg" alt="Vertical Metal menu" /></p><p>Here are samples and downloadable package:</p><h5 style="text-align: center;"><strong><a
title="CSS3 Onclick Vertical Metal menu - demo 162" href="http://www.script-tutorials.com/demos/162/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 Onclick Vertical Metal menu - package" href="http://www.script-tutorials.com/demos/162/source.zip" target="_blank">download in package</a></strong></h5><hr
/><p>Ok, download the example files and lets start coding !</p><hr
/><h3>Step 1. HTML</h3><p>As usual, we start with the HTML. Here are full html code of our menu. As you can see &#8211; menu contain only 1 sub level. Hope this is will enough for you. Whole menu built on UL-LI elements.</p><h4>index.html</h4><pre class="brush:html">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;
    &lt;head&gt;
        &lt;meta charset=&quot;utf-8&quot; /&gt;
        &lt;title&gt;CSS3 Onclick Vertical Metal menu | Script Tutorials&lt;/title&gt;

        &lt;link rel=&quot;stylesheet&quot; href=&quot;css/layout.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
        &lt;link rel=&quot;stylesheet&quot; href=&quot;css/menu.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div class=&quot;container&quot;&gt;

            &lt;ul id=&quot;nav&quot;&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/t1.png&quot; /&gt; Home&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;sub&quot; tabindex=&quot;1&quot;&gt;&lt;img src=&quot;images/t2.png&quot; /&gt;HTML/CSS&lt;/a&gt;&lt;img src=&quot;images/up.gif&quot; alt=&quot;&quot; /&gt;
                    &lt;ul&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 1&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 2&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 3&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 4&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 5&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;sub&quot; tabindex=&quot;1&quot;&gt;&lt;img src=&quot;images/t3.png&quot; /&gt;jQuery/JS&lt;/a&gt;&lt;img src=&quot;images/up.gif&quot; alt=&quot;&quot; /&gt;
                    &lt;ul&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 6&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 7&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 8&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 9&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/empty.gif&quot; /&gt;Link 10&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/t2.png&quot; /&gt;PHP&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/t2.png&quot; /&gt;MySQL&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/t2.png&quot; /&gt;XSLT&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;

        &lt;/div&gt;

        &lt;footer&gt;
            &lt;h2&gt;CSS3 Onclick Vertical Metal menu&lt;/h2&gt;
            &lt;a href=&quot;http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/&quot; class=&quot;stuts&quot;&gt;Back to original tutorial on &lt;span&gt;Script Tutorials&lt;/span&gt;&lt;/a&gt;
        &lt;/footer&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre><h3>Step 2. CSS</h3><p>Here are the CSS styles of our menu. Maybe you&#8217;ve noticed &#8211; that in our html &#8211; I have two CSS files: layout.css and menu.css. The first file (layout.css) contain the styles of our test page. We will not publish these styles in this article, but if you wish &#8211; you can find these styles in the package.</p><h4>css/menu.css</h4><pre class="brush:css">
#nav {
    border:3px solid #3e4547;

    box-shadow:2px 2px 8px #000000;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}
#nav, #nav ul {
    list-style:none;
    padding:0;
    width:200px;
}
#nav ul {
    position:relative;
    z-index:-1;
}
#nav li {
    position:relative;
    z-index:100;
}
#nav ul li {
    margin-top:-23px;

    -moz-transition:  0.4s linear 0.4s;
    -ms-transition: 0.4s linear 0.4s;
    -o-transition: 0.4s linear 0.4s;
    -webkit-transition: 0.4s linear 0.4s;
    transition: 0.4s linear 0.4s;
}
#nav li a {
    background-color:#d4d5d8;
    color:#000;
    display:block;
    font-size:12px;
    font-weight:bold;
    line-height:28px;
    outline:0;
    padding-left:15px;
    text-decoration:none;
}
#nav li a.sub {
    background:#d4d5d8 url(&quot;../images/down.gif&quot;) no-repeat;
}
#nav li a + img {
    cursor:pointer;
    display:none;
    height:28px;
    left:0;
    position:absolute;
    top:0;
    width:200px;
}
#nav li a img {
    border-width:0px;
    height:24px;
    line-height:28px;
    margin-right:8px;
    vertical-align:middle;
    width:24px;
}
#nav li a:hover {
    background-color:#bcbdc1;
}
#nav ul li a {
    background-color:#eee;
    border-bottom:1px solid #ccc;
    color:#000;
    font-size:11px;
    line-height:22px;
}
#nav ul li a:hover {
    background-color:#ddd;
    color:#444;
}
#nav ul li a img {
    background: url(&quot;../images/bulb.png&quot;) no-repeat;
    border-width:0px;
    height:16px;
    line-height:22px;
    margin-right:5px;
    vertical-align:middle;
    width:16px;
}
#nav ul li:nth-child(odd) a img {
    background:url(&quot;../images/bulb2.png&quot;) no-repeat;
}
#nav a.sub:focus {
    background:#bcbdc1;
    outline:0;
}
#nav a:focus ~ ul li {
    margin-top:0;

    -moz-transition:  0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linears;
    -webkit-transition: 0.4s linears;
    transition: 0.4s linear;
}
#nav a:focus + img, #nav a:active + img {
    display:block;
}
#nav a.sub:active {
    background:#bcbdc1;
    outline:0;
}
#nav a:active ~ ul li {
    margin-top:0;
}
#nav ul:hover {
    display:block;
}
</pre><hr
/><h5 style="text-align: center;"><strong><a
title="CSS3 Onclick Vertical Metal menu - demo 162" href="http://www.script-tutorials.com/demos/162/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 Onclick Vertical Metal menu - package" href="http://www.script-tutorials.com/demos/162/source.zip" target="_blank" rel="nofollow">download in package</a></strong></h5><hr
/><h3>Conclusion</h3><p>Hope you enjoyed with our new vertical menu, don&#8217;t forget to tell thanks and leave a comment <img
src='http://www.script-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Good luck!</p><div
class="shr-publisher-1103"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/css3-bottom-navigation-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/170/thumb.png" alt="Creating a Toggle CSS3 Bottom Navigation Bar" /> <br
/> Creating a Toggle CSS3 Bottom Navigation Bar</a></li><li> <a
href="http://www.script-tutorials.com/css3-metal-menu-with-icons/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/152/thumb.png" alt="Creating a Multilevel CSS3 Metal Navigation with icons" /> <br
/> Creating a Multilevel CSS3 Metal Navigation with icons</a></li><li> <a
href="http://www.script-tutorials.com/css3-green-marble-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/179/thumb.png" alt="Creating a Marble Style CSS3 Navigation Menu" /> <br
/> Creating a Marble Style CSS3 Navigation Menu</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Creating a Multilevel CSS3 Metal Navigation with icons</title><link>http://www.script-tutorials.com/css3-metal-menu-with-icons/</link> <comments>http://www.script-tutorials.com/css3-metal-menu-with-icons/#comments</comments> <pubDate>Thu, 29 Sep 2011 18:40:50 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[creating]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[how-to]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[multiple]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[tutorial]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=1056</guid> <description><![CDATA[CSS3 Metal menu with icons In our new tutorial we&#8217;ll create a beautiful CSS3 menu with icons in metal style. This is will pretty standard UL-LI multilevel menu. Here are final result (what we will creating): Here are samples and downloadable package: Live Demo download in package Ok, download the example files and lets start [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/162/thumb.png" alt="Creating an Accordian like CSS3 Onclick Vertical Navigation" /> Creating an Accordian like CSS3 Onclick Vertical Navigation</a></li><li> <a
href="http://www.script-tutorials.com/css3-green-marble-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/179/thumb.png" alt="Creating a Marble Style CSS3 Navigation Menu" /> Creating a Marble Style CSS3 Navigation Menu</a></li><li> <a
href="http://www.script-tutorials.com/css3-bottom-navigation-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/170/thumb.png" alt="Creating a Toggle CSS3 Bottom Navigation Bar" /> Creating a Toggle CSS3 Bottom Navigation Bar</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="CSS3 Metal menu with icons" alt="CSS3 Metal menu with icons" src="http://www.script-tutorials.com/demos/152/thumb.png" /></div><p><strong>CSS3 Metal menu with icons</strong></p><p>In our new tutorial we&#8217;ll create a beautiful CSS3 menu with icons in metal style. This is will pretty standard UL-LI multilevel menu.</p><p><span
id="more-1056"></span></p><hr
/><p>Here are final result (what we will creating):</p><p><img
src="http://www.script-tutorials.com/demos/152/metal_menu.png" alt="css3 menu11" /></p><p>Here are samples and downloadable package:</p><h5 style="text-align: center;"><strong><a
title="CSS3 Metal menu with icons - demo 152" href="http://www.script-tutorials.com/demos/152/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 Metal menu with icons - package" href="http://www.script-tutorials.com/demos/152/source.zip" target="_blank">download in package</a></strong></h5><hr
/><p>Ok, download the example files and lets start coding !</p><hr
/><h3>Step 1. HTML</h3><p>As usual, we start with the HTML. Here are full html code of our menu. As you can see &#8211; this is multilevel menu. Whole menu built on UL-LI elements.</p><h4>index.html</h4><pre class="brush:html">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot; &gt;
    &lt;head&gt;
        &lt;meta charset=&quot;utf-8&quot; /&gt;
        &lt;title&gt;CSS3 Metal menu with icons | Script Tutorials&lt;/title&gt;

        &lt;link rel=&quot;stylesheet&quot; href=&quot;css/layout.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
        &lt;link rel=&quot;stylesheet&quot; href=&quot;css/menu.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div class=&quot;container&quot;&gt;

            &lt;ul id=&quot;nav&quot;&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/home.png&quot; /&gt; Home&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;&lt;img src=&quot;images/top1.png&quot; /&gt; HTML/CSS&lt;/span&gt;&lt;/a&gt;
                    &lt;div class=&quot;subs&quot;&gt;
                        &lt;div class=&quot;col&quot;&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 1&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 2&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 3&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 4&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;&lt;img src=&quot;images/top3.png&quot; /&gt; Sublinks&lt;/span&gt;&lt;/a&gt;
                                    &lt;div class=&quot;subs&quot;&gt;
                                        &lt;div class=&quot;col&quot;&gt;
                                            &lt;ul&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 41&lt;/a&gt;&lt;/li&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 42&lt;/a&gt;&lt;/li&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 43&lt;/a&gt;&lt;/li&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 44&lt;/a&gt;&lt;/li&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 45&lt;/a&gt;&lt;/li&gt;
                                            &lt;/ul&gt;
                                        &lt;/div&gt;
                                        &lt;div class=&quot;col&quot;&gt;
                                            &lt;ul&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 46&lt;/a&gt;&lt;/li&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 47&lt;/a&gt;&lt;/li&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 48&lt;/a&gt;&lt;/li&gt;
                                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 49&lt;/a&gt;&lt;/li&gt;
                                            &lt;/ul&gt;
                                        &lt;/div&gt;
                                    &lt;/div&gt;
                                &lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;col&quot;&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 6&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 7&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 8&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 9&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 10&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;&lt;img src=&quot;images/top2.png&quot; /&gt; jQuery/JS&lt;/span&gt;&lt;/a&gt;
                    &lt;div class=&quot;subs&quot;&gt;
                        &lt;div class=&quot;col&quot;&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 1&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 2&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 3&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 4&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 5&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;col&quot;&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 6&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 7&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 8&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 9&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/bub.png&quot; /&gt; Link 10&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/top3.png&quot; /&gt; PHP&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/top4.png&quot; /&gt; MySQL&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/top5.png&quot; /&gt; XSLT&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;

        &lt;/div&gt;

        &lt;footer&gt;
            &lt;h2&gt;CSS3 Metal menu with icons&lt;/h2&gt;
            &lt;a href=&quot;http://www.script-tutorials.com/css3-metal-menu-with-icons&quot; class=&quot;stuts&quot;&gt;Back to original tutorial on &lt;span&gt;Script Tutorials&lt;/span&gt;&lt;/a&gt;
        &lt;/footer&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre><h3>Step 2. CSS</h3><p>Here are the CSS styles of our menu. Maybe you&#8217;ve noticed &#8211; that in our html &#8211; I have two CSS files: layout.css and menu.css. The first file (layout.css) contain the styles of our test page. We will not publish these styles in this article, but if you wish &#8211; you can find these styles in the package.</p><h4>css/menu.css</h4><pre class="brush:css">
ul#nav {
    display:block;
    float:left;
    font-family:Trebuchet MS,sans-serif;
    font-size:0;
    padding:5px 5px 5px 0;

    background: -moz-linear-gradient(#f5f5f5, #c4c4c4); /* FF 3.6+ */
    background: -ms-linear-gradient(#f5f5f5, #c4c4c4); /* IE10 */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #c4c4c4)); /* Safari 4+, Chrome 2+ */
    background: -webkit-linear-gradient(#f5f5f5, #c4c4c4); /* Safari 5.1+, Chrome 10+ */
    background: -o-linear-gradient(#f5f5f5, #c4c4c4); /* Opera 11.10 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#c4c4c4'); /* IE6 &amp; IE7 */
    -ms-filter: &quot;progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#c4c4c4')&quot;; /* IE8+ */
    background: linear-gradient(#f5f5f5, #c4c4c4); /* the standard */
}
ul#nav,ul#nav ul {
    list-style:none;
    margin:0;
}
ul#nav,ul#nav .subs {
    background-color:#444;
    border:1px solid #454545;

    border-radius:9px;
    -moz-border-radius:9px;
    -webkit-border-radius:9px;
}
ul#nav .subs {
    background-color:#fff;
    border:2px solid #222;
    display:none;
    float:left;
    left:0;
    padding:0 6px 6px;
    position:absolute;
    top:100%;
    width:300px;

    border-radius:7px;
    -moz-border-radius:7px;
    -webkit-border-radius:7px;
}
ul#nav li:hover&gt;* {
    display:block;
}
ul#nav li:hover {
    position:relative;
}
ul#nav ul .subs {
    left:100%;
    position:absolute;
    top:0;
}
ul#nav ul {
    padding:0 5px 5px;
}
ul#nav .col {
    float:left;
    width:50%;
}
ul#nav li {
    display:block;
    float:left;
    font-size:0;
    white-space:nowrap;
}
ul#nav&gt;li,ul#nav li {
    margin:0 0 0 5px;
}
ul#nav ul&gt;li {
    margin:5px 0 0;
}
ul#nav a:active,ul#nav a:focus {
    outline-style:none;
}
ul#nav a {
    border-style:none;
    border-width:0;
    color:#181818;
    cursor:pointer;
    display:block;
    font-size:13px;
    font-weight:bold;
    padding:8px 18px;
    text-align:left;
    text-decoration:none;
    text-shadow:#fff 0 1px 1px;
    vertical-align:middle;
}
ul#nav ul li {
    float:none;
    margin:6px 0 0;
}
ul#nav ul a {
    background-color:#fff;
    border-color:#efefef;
    border-style:solid;
    border-width:0 0 1px;
    color:#000;
    font-size:11px;
    padding:4px;
    text-align:left;
    text-decoration:none;
    text-shadow:#fff 0 0 0;

    border-radius:0;
    -moz-border-radius:0;
    -webkit-border-radius:0;
}
ul#nav li:hover&gt;a {
    border-style:none;
    color:#fff;
    font-size:13px;
    font-weight:bold;
    text-decoration:none;
    text-shadow:#181818 0 1px 1px;
}
ul#nav img {
    border:none;
    margin-right:8px;
    vertical-align:middle;
}
ul#nav span {
    background-position:right center;
    background-repeat:no-repeat;
    display:block;
    overflow:visible;
    padding-right:0;
}
ul#nav ul span {
    background-image:url(&quot;../images/arrow.png&quot;);
    padding-right:20px;
}
ul#nav ul li:hover&gt;a {
    border-color:#444;
    border-style:solid;
    color:#444;
    font-size:11px;
    text-decoration:none;
    text-shadow:#fff 0 0 0;
}
ul#nav &gt; li &gt;a {
    background-color:transpa;
    height:25px;
    line-height:25px;

    border-radius:11px;
    -moz-border-radius:11px;
    -webkit-border-radius:11px;
}
ul#nav &gt; li:hover &gt; a {
    background-color:#313638;
    line-height:25px;
}
</pre><hr
/><h5 style="text-align: center;"><strong><a
title="CSS3 Metal menu with icons - demo 152" href="http://www.script-tutorials.com/demos/152/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="CSS3 Metal menu with icons - package" href="http://www.script-tutorials.com/demos/152/source.zip" target="_blank" rel="nofollow">download in package</a></strong></h5><hr
/><h3>Conclusion</h3><p>Hope you enjoyed with new menu, don&#8217;t forget to tell thanks and leave a comment <img
src='http://www.script-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Good luck!</p><div
class="shr-publisher-1056"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/css3-onclick-vertical-metal-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/162/thumb.png" alt="Creating an Accordian like CSS3 Onclick Vertical Navigation" /> <br
/> Creating an Accordian like CSS3 Onclick Vertical Navigation</a></li><li> <a
href="http://www.script-tutorials.com/css3-green-marble-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/179/thumb.png" alt="Creating a Marble Style CSS3 Navigation Menu" /> <br
/> Creating a Marble Style CSS3 Navigation Menu</a></li><li> <a
href="http://www.script-tutorials.com/css3-bottom-navigation-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/170/thumb.png" alt="Creating a Toggle CSS3 Bottom Navigation Bar" /> <br
/> Creating a Toggle CSS3 Bottom Navigation Bar</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/css3-metal-menu-with-icons/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Creating a Click-action CSS3 Dropdown Menu with jQuery</title><link>http://www.script-tutorials.com/click-action-css3-dropdown-menu-with-jquery/</link> <comments>http://www.script-tutorials.com/click-action-css3-dropdown-menu-with-jquery/#comments</comments> <pubDate>Fri, 16 Sep 2011 17:28:25 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[click action]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[down]]></category> <category><![CDATA[drop]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[on click]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=1014</guid> <description><![CDATA[Click-action CSS3 dropdown menu with jQuery Nowadays, pure CSS3 menus still very popular. Mostly &#8211; this is UL-LI based menus. Today we will continue making nice menus for you. This will nice dropdown menu (looks like menu at http://www.microsoft.com/) with onclicking (instead onhover). Here are final result (what we will creating): Here are samples and [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/click-action-multilevel-css3-dropdown-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/133/thumb.png" alt="Click action Multi-level CSS3 Dropdown Menu" /> Click action Multi-level CSS3 Dropdown Menu</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-2/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/91/thumb.png" alt="Creating a CSS3 Dropdown Menu #2" /> Creating a CSS3 Dropdown Menu #2</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-4/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/102/thumb.png" alt="Creating A CSS3 Dropdown Menu #4" /> Creating A CSS3 Dropdown Menu #4</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="click action css3 dropdown menu" alt="click action css3 dropdown menu" src="http://www.script-tutorials.com/demos/143/thumb.png" /></div><p><strong>Click-action CSS3 dropdown menu with jQuery</strong></p><p>Nowadays, pure CSS3 menus still very popular. Mostly &#8211; this is UL-LI based menus. Today we will continue making nice menus for you. This will nice dropdown menu (looks like menu at http://www.microsoft.com/) with onclicking (instead onhover).</p><p><span
id="more-1014"></span></p><hr
/><p>Here are final result (what we will creating):</p><p><img
src="http://www.script-tutorials.com/demos/143/css3_menu10.jpg" alt="css3 menu10" /></p><p>Here are samples and downloadable package:</p><h5 style="text-align: center;"><strong><a
title="click action css3 dropdown menu - demo 143" href="http://www.script-tutorials.com/demos/143/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="click action css3 dropdown menu - demo 143" href="http://www.script-tutorials.com/demos/143/source.zip" target="_blank">download in package</a></strong></h5><hr
/><p>Ok, download the example files and lets start coding !</p><hr
/><h3>Step 1. HTML + JS</h3><p>As usual, we start with the HTML.</p><p>Here are full html code with our menu. As you can see &#8211; this is multilevel menu. I hope that you can easy to understand it. Whole menu built on UL-LI elements.</p><h4>index.html</h4><pre class="brush:html">
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;&gt;&lt;/script&gt;

&lt;div class=&quot;example&quot;&gt;
    &lt;div class=&quot;menu&quot;&gt;
        &lt;span&gt;
            &lt;ul id=&quot;nav&quot;&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Tutorials&lt;/a&gt;
                    &lt;div class=&quot;subs&quot;&gt;
                        &lt;div&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;h3&gt;Submenu #1&lt;/h3&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 1&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 2&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 3&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 4&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 5&lt;/a&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                &lt;/li&gt;
                                &lt;li&gt;&lt;h3&gt;Submenu #2&lt;/h3&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 6&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 7&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 8&lt;/a&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                &lt;/li&gt;
                                &lt;li&gt;&lt;h3&gt;Submenu #3&lt;/h3&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 9&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 10&lt;/a&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                &lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Resources&lt;/a&gt;
                    &lt;div class=&quot;subs&quot;&gt;
                        &lt;div class=&quot;wrp2&quot;&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;h3&gt;Submenu #4&lt;/h3&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 1&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 2&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 3&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 4&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 5&lt;/a&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                &lt;/li&gt;
                                &lt;li&gt;&lt;h3&gt;Submenu #5&lt;/h3&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 6&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 7&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 8&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 9&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 10&lt;/a&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                &lt;/li&gt;
                            &lt;/ul&gt;
                            &lt;p class=&quot;sep&quot;&gt;&lt;/p&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;h3&gt;Submenu #6&lt;/h3&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 11&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 12&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 13&lt;/a&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                &lt;/li&gt;
                                &lt;li&gt;&lt;h3&gt;Submenu #7&lt;/h3&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 14&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 15&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 16&lt;/a&gt;&lt;/li&gt;

                                    &lt;/ul&gt;
                                &lt;/li&gt;
                                &lt;li&gt;&lt;h3&gt;Submenu #8&lt;/h3&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 17&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 18&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 19&lt;/a&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                &lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/about/&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/click-action-css3-dropdown-menu-with-jquery/&quot;&gt;Go Back To The Tutorial&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/span&gt;
    &lt;/div&gt;
&lt;/div&gt;

&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(window).load(function() {

    $(&quot;#nav &gt; li &gt; a&quot;).click(function (e) { // binding onclick
        if ($(this).parent().hasClass('selected')) {
            $(&quot;#nav .selected div div&quot;).slideUp(100); // hiding popups
            $(&quot;#nav .selected&quot;).removeClass(&quot;selected&quot;);
        } else {
            $(&quot;#nav .selected div div&quot;).slideUp(100); // hiding popups
            $(&quot;#nav .selected&quot;).removeClass(&quot;selected&quot;);

            if ($(this).next(&quot;.subs&quot;).length) {
                $(this).parent().addClass(&quot;selected&quot;); // display popup
                $(this).next(&quot;.subs&quot;).children().slideDown(200);
            }
        }
        e.stopPropagation();
    }); 

    $(&quot;body&quot;).click(function () { // binding onclick to body
        $(&quot;#nav .selected div div&quot;).slideUp(100); // hiding popups
        $(&quot;#nav .selected&quot;).removeClass(&quot;selected&quot;);
    }); 

});
&lt;/script&gt;
</pre><p>In bottom &#8211; we can see extra jQuery code. Here are onclick events and a little of animation.</p><h3>Step 2. CSS</h3><p>Here are used CSS styles. First two selectors &#8211; layout of our demo page. All rest &#8211; belong to menu.</p><h4>css/style.css</h4><pre class="brush:css">
/* demo page styles */
body {
    background:#eee;
    margin:0;
    padding:0;
    font-family:Segoe UI,Tahoma,Arial,Verdana,sans-serif;
}
.example {
    background:#fff url(../images/blue.jpg);
    width:700px;
    height:500px;
    border:1px #000 solid;
    margin:20px auto;
    padding:15px;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}

/* main menu styles */
.menu {
    background-color:#d0e6f5;
    text-align:center;
    width:100%;
}
.menu &gt; span {
    display:inline-block;
    margin:0 auto;
}
#nav {
    display:inline;
    text-align:left;
    position:relative;
    list-style-type:none;
}
#nav &gt; li {
    float:left;
    padding:0;
    position:relative;
}
#nav &gt; li &gt; a {
    border:1px solid transparent;
    color:#4F4F4F;
    display:block;
    font-size:90%;
    padding:3px 10px;
    position:relative;
    text-decoration:none;
}
#nav &gt; li &gt; a:hover {
    background-color:#e4ecf4;
    border-color:#999
}
#nav &gt; li.selected  &gt; a {
    background-color:#FFFFFF;
    border-color:#999999 #999999 #FFFFFF;
    z-index:2;
}
#nav li div {
    position:relative;
}
#nav li div div {
    background-color:#FFFFFF;
    border:1px solid #999999;
    padding:12px 0;
    display:none;
    font-size:0.75em;
    margin:0;
    position:absolute;
    top:-1px;
    z-index:1;
    width:190px;
}
#nav li div div.wrp2 {
    width:380px;
}
#nav .sep {
    left:190px;
    border-left:1px solid #E3E3E3;
    bottom:0;
    height:auto;
    margin:15px 0;
    position:absolute;
    top:0;
    width:1px;
}
#nav li div ul {
    padding-left:10px;
    padding-right:10px;
    position:relative;
    width:170px;
    float:left;
    list-style-type:none;
}
#nav li div ul li {
    margin:0;
    padding:0;
}
#nav li div ul li h3 {
    border-bottom:1px solid #E3E3E3;
    color:#4F4F4F;
    font-weight:bold;
    margin:0 5px 4px;
    font-size:0.95em;
    padding-bottom:3px;
    padding-top:3px;
}
#nav li ul ul {
    padding:0 0 8px;
}
#nav li ul ul li {
    margin:0;
    padding:0;
}
#nav li ul ul li a {
    color:#0060A6;
    display:block;
    margin-bottom:1px;
    padding:3px 5px;
    text-decoration:none;
    font-size:0.9em;
}
#nav li ul ul li a:hover{
    background-color:#0060a6;
    color:#fff;
}
</pre><hr
/><h5 style="text-align: center;"><strong><a
title="click action css3 dropdown menu - demo 143" href="http://www.script-tutorials.com/demos/143/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="click action css3 dropdown menu - demo 143" href="http://www.script-tutorials.com/demos/143/source.zip" target="_blank" rel="nofollow">download in package</a></strong></h5><hr
/><h3>Conclusion</h3><p>Hope you enjoyed with this tutorial, don&#8217;t forget to tell thanks and leave a comment <img
src='http://www.script-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Good luck!</p><div
class="shr-publisher-1014"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/click-action-multilevel-css3-dropdown-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/133/thumb.png" alt="Click action Multi-level CSS3 Dropdown Menu" /> <br
/> Click action Multi-level CSS3 Dropdown Menu</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-2/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/91/thumb.png" alt="Creating a CSS3 Dropdown Menu #2" /> <br
/> Creating a CSS3 Dropdown Menu #2</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-4/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/102/thumb.png" alt="Creating A CSS3 Dropdown Menu #4" /> <br
/> Creating A CSS3 Dropdown Menu #4</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/click-action-css3-dropdown-menu-with-jquery/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Click action Multi-level CSS3 Dropdown Menu</title><link>http://www.script-tutorials.com/click-action-multilevel-css3-dropdown-menu/</link> <comments>http://www.script-tutorials.com/click-action-multilevel-css3-dropdown-menu/#comments</comments> <pubDate>Fri, 02 Sep 2011 17:24:53 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[drop down]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[multi level]]></category> <category><![CDATA[multilevel]]></category> <category><![CDATA[navigation]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=970</guid> <description><![CDATA[Click action multilevel CSS3 dropdown menu Nowadays, pure CSS3 menus still very popular. Mostly &#8211; this is UL-LI based menus. Today we will continue making nice menus for you. This will multilevel dropdown menu, but today submenus will appear not onhover, but onclick action. Here are final result (what we will creating): Here are samples [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/click-action-css3-dropdown-menu-with-jquery/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/143/thumb.png" alt="Creating a Click-action CSS3 Dropdown Menu with jQuery" /> Creating a Click-action CSS3 Dropdown Menu with jQuery</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-4/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/102/thumb.png" alt="Creating A CSS3 Dropdown Menu #4" /> Creating A CSS3 Dropdown Menu #4</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-2/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/91/thumb.png" alt="Creating a CSS3 Dropdown Menu #2" /> Creating a CSS3 Dropdown Menu #2</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="click action multilevel css3 dropdown menu" alt="click action multilevel css3 dropdown menu" src="http://www.script-tutorials.com/demos/133/thumb.png" /></div><p><strong>Click action multilevel CSS3 dropdown menu</strong></p><p>Nowadays, pure CSS3 menus still very popular. Mostly &#8211; this is UL-LI based menus. Today we will continue making nice menus for you. This will multilevel dropdown menu, but today submenus will appear not onhover, but onclick action.</p><p><span
id="more-970"></span></p><hr
/><p>Here are final result (what we will creating):</p><p><img
src="http://www.script-tutorials.com/demos/133/css3_menu9.jpg" alt="css3 menu9" /></p><p>Here are samples and downloadable package:</p><h5 style="text-align: center;"><strong><a
title="click action multilevel css3 dropdown menu - demo 133" href="http://www.script-tutorials.com/demos/133/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="click action multilevel css3 dropdown menu - demo 133" href="http://www.script-tutorials.com/demos/133/source.zip" target="_blank">download in package</a></strong></h5><hr
/><p>Ok, download the example files and lets start coding !</p><hr
/><h3>Step 1. HTML</h3><p>As usual, we start with the HTML.</p><p>Here are full html code with our menu. As you can see &#8211; this is multi-level menu. I hope that you can easy to understand it. Whole menu built on UL-LI elements.</p><h4>index.html</h4><pre class="brush:html">
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot;&gt;

&lt;div class=&quot;example&quot;&gt;
    &lt;ul id=&quot;nav&quot;&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a class=&quot;fly&quot; href=&quot;#&quot; tabindex=&quot;1&quot;&gt;Tutorials&lt;/a&gt;
            &lt;ul class=&quot;dd&quot;&gt;
                &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/html-css/&quot;&gt;HTML / CSS&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a class=&quot;fly&quot; href=&quot;#&quot; tabindex=&quot;1&quot;&gt;JS / jQuery&lt;/a&gt;
                    &lt;ul&gt;
                        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/jquery/&quot;&gt;jQuery&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/javascript/&quot;&gt;JS&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/php/&quot;&gt;PHP&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/mysql/&quot;&gt;MySQL&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/xslt/&quot;&gt;XSLT&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/ajax/&quot;&gt;Ajax&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/li&gt;
        &lt;li&gt;&lt;a class=&quot;fly&quot; href=&quot;#&quot; tabindex=&quot;1&quot;&gt;Resources&lt;/a&gt;
            &lt;ul class=&quot;dd&quot;&gt;
                &lt;li&gt;&lt;a class=&quot;fly&quot; href=&quot;#&quot; tabindex=&quot;1&quot;&gt;By category&lt;/a&gt;
                    &lt;ul&gt;
                        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/php/&quot;&gt;PHP&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/mysql/&quot;&gt;MySQL&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a class=&quot;fly&quot; href=&quot;#&quot; tabindex=&quot;1&quot;&gt;Menu1&lt;/a&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Menu1&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Menu2&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;a class=&quot;fly&quot; href=&quot;#&quot; tabindex=&quot;1&quot;&gt;Menu3&lt;/a&gt;
                                    &lt;ul&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Menu31&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Menu32&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Menu33&lt;/a&gt;&lt;/li&gt;
                                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Menu34&lt;/a&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                &lt;/li&gt;
                                &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Menu4&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/category/ajax/&quot;&gt;Ajax&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/li&gt;
                &lt;li&gt;&lt;a class=&quot;fly&quot; href=&quot;#&quot; tabindex=&quot;1&quot;&gt;By tag name&lt;/a&gt;
                    &lt;ul&gt;
                        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/tag/captcha/&quot;&gt;captcha&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/tag/gallery/&quot;&gt;gallery&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/tag/animation/&quot;&gt;animation&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/li&gt;
            &lt;/ul&gt;
        &lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/about/&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.script-tutorials.com/click-action-multilevel-css3-dropdown-menu/&quot;&gt;Go Back To The Tutorial&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
&lt;/div&gt;
</pre><h3>Step 2. CSS</h3><p>Here are used CSS styles. First two selectors &#8211; layout of our demo page. All rest &#8211; belong to menu.</p><h4>css/style.css</h4><pre class="brush:css">
/* demo page styles */
body {
    background:#eee;
    margin:0;
    padding:0;
}
.example {
    background:#fff url(../images/tech.jpg);
    width:770px;
    height:570px;
    border:1px #000 solid;
    margin:20px auto;
    padding:15px;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}

/* main menu styles */
#nav,#nav ul {
    background-image:url(../images/tr75.png);
    list-style:none;
    margin:0;
    padding:0;
}
#nav {
    height:41px;
    padding-left:5px;
    padding-top:5px;
    position:relative;
    z-index:2;
}
#nav ul {
    left:-9999px;
    position:absolute;
    top:37px;
    width:auto;
}
#nav ul ul {
    left:-9999px;
    position:absolute;
    top:0;
    width:auto;
}
#nav li {
    float:left;
    margin-right:5px;
    position:relative;
}
#nav li a {
    background:#c1c1bf;
    color:#000;
    display:block;
    float:left;
    font-size:16px;
    padding:8px 10px;
    text-decoration:none;
}
#nav &gt; li &gt; a {
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    -o-border-radius:6px;
    border-radius:6px;

    overflow:hidden;
}
#nav li a.fly {
    background:#c1c1bf url(../images/arrow.gif) no-repeat right center;
    padding-right:15px;
}
#nav ul li {
    margin:0;
}
#nav ul li a {
    width:120px;
}
#nav ul li a.fly {
    padding-right:10px;
}

/*hover styles*/
#nav li:hover &gt; a {
    background-color:#858180;
    color:#fff;
}

/*focus styles*/
    #nav li a:focus {
    outline-width:0;
}

/*popups*/
#nav li a:active + ul.dd,#nav li a:focus + ul.dd,#nav li ul.dd:hover {
    left:0;
}
#nav ul.dd li a:active + ul,#nav ul.dd li a:focus + ul,#nav ul.dd li ul:hover {
    left:140px;
}
</pre><h3>Step 3. Images</h3><p>Our menu using only three images: arrow.gif, tech.jpg and tr75.png. I don`t included them into tutorial, just because two of them very small (will difficult to locate it) and last one &#8211; just background image. All images will in package.</p><hr
/><h5 style="text-align: center;"><strong><a
title="click action multilevel css3 dropdown menu - demo 133" href="http://www.script-tutorials.com/demos/133/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="click action multilevel css3 dropdown menu - demo 133" href="http://www.script-tutorials.com/demos/133/source.zip" target="_blank" rel="nofollow">download in package</a></strong></h5><hr
/><h3>Conclusion</h3><p>Hope you enjoyed with this tutorial, don&#8217;t forget to tell thanks and leave a comment <img
src='http://www.script-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Good luck!</p><div
class="shr-publisher-970"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/click-action-css3-dropdown-menu-with-jquery/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/143/thumb.png" alt="Creating a Click-action CSS3 Dropdown Menu with jQuery" /> <br
/> Creating a Click-action CSS3 Dropdown Menu with jQuery</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-4/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/102/thumb.png" alt="Creating A CSS3 Dropdown Menu #4" /> <br
/> Creating A CSS3 Dropdown Menu #4</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-dropdown-menu-2/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/91/thumb.png" alt="Creating a CSS3 Dropdown Menu #2" /> <br
/> Creating a CSS3 Dropdown Menu #2</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/click-action-multilevel-css3-dropdown-menu/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Creating A CSS3 Animated Menu</title><link>http://www.script-tutorials.com/creating-css3-animated-menu/</link> <comments>http://www.script-tutorials.com/creating-css3-animated-menu/#comments</comments> <pubDate>Wed, 24 Aug 2011 17:55:00 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[HTML/CSS]]></category> <category><![CDATA[animated]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[tutorial]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=933</guid> <description><![CDATA[Creating CSS3 animated menu This is our eighth CSS3 menu. Today we will make interesting animated menu using CSS3. This menu will have 2 levels. By default &#8211; we can see single small top menu element. When we will hover our mouse over this element &#8211; first level elements will appear, when we will hover [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/how-to-create-a-pure-css3-animated-buttons/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/184/thumb.png" alt="Creating Fantastic Animated Buttons using CSS3" /> Creating Fantastic Animated Buttons using CSS3</a></li><li> <a
href="http://www.script-tutorials.com/css3-green-marble-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/179/thumb.png" alt="Creating a Marble Style CSS3 Navigation Menu" /> Creating a Marble Style CSS3 Navigation Menu</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-slideout-menu-5/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/107/thumb.png" alt="Creating CSS3 Slideout Menu #5" /> Creating CSS3 Slideout Menu #5</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="Creating CSS3 animated menu #8" alt="Creating CSS3 animated menu #8" src="http://www.script-tutorials.com/demos/126/thumb.png" /></div><p><strong>Creating CSS3 animated menu</strong></p><p>This is our eighth CSS3 menu. Today we will make interesting animated menu using CSS3. This menu will have 2 levels. By default &#8211; we can see single small top menu element. When we will hover our mouse over this element &#8211; first level elements will appear, when we will hover mouse over these elements &#8211; will appear submenus. So, lets start !</p><p><span
id="more-933"></span></p><hr
/><p>This is our final result (how menu will looks):</p><p><img
src="http://www.script-tutorials.com/demos/126/css3_menu8.jpg" alt="CSS3 animated menu8" /></p><p>Here are samples and downloadable package:</p><h5 style="text-align: center;"><strong><a
title="Creating CSS3 animated menu 8 - demo 126" href="http://www.script-tutorials.com/demos/126/index.html" target="_blank">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="Creating CSS3 animated menu 8 - demo 126" href="http://www.script-tutorials.com/demos/126/source.zip" target="_blank">download in package</a></strong></h5><hr
/><p>Ok, download our package and lets start creating this menu!</p><hr
/><h3>Step 1. HTML</h3><p>Here are html source code of our menu.</p><h4>index.html</h4><pre class="brush:html">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot; type=&quot;text/css&quot; media=&quot;all&quot;&gt;
    &lt;title&gt;CSS3 animated menu #8 | Script tutorials&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&quot;example&quot;&gt;

    &lt;!-- defining top menu elements --&gt;
    &lt;ul class=&quot;navi&quot;&gt;
        &lt;li id=&quot;n1&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu1&lt;/span&gt;&lt;/a&gt;
            &lt;!-- defining sub menu elements --&gt;
            &lt;ul class=&quot;sub&quot;&gt;
                &lt;li class=&quot;l&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu11&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                &lt;li class=&quot;c&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu12&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                &lt;li class=&quot;r&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu13&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/li&gt;
        &lt;li id=&quot;n2&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu2&lt;/span&gt;&lt;/a&gt;
            &lt;ul class=&quot;sub&quot;&gt;
                &lt;li class=&quot;l&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu21&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                &lt;li class=&quot;c&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu22&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                &lt;li class=&quot;r&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu23&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/li&gt;
        &lt;li id=&quot;n3&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu3&lt;/span&gt;&lt;/a&gt;
            &lt;ul class=&quot;sub&quot;&gt;
                &lt;li class=&quot;l&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu31&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                &lt;li class=&quot;c&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu31&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                &lt;li class=&quot;r&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu31&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/li&gt;
        &lt;li id=&quot;n4&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu4&lt;/span&gt;&lt;/a&gt;
            &lt;ul class=&quot;sub&quot;&gt;
                &lt;li class=&quot;l&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu41&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                &lt;li class=&quot;c&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu41&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
                &lt;li class=&quot;r&quot;&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Menu41&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/li&gt;
        &lt;li id=&quot;n5&quot;&gt;&lt;a href=&quot;http://www.script-tutorials.com/creating-css3-animated-menu/&quot;&gt;&lt;img src=&quot;images/btn.png&quot; alt=&quot;&quot; /&gt;&lt;span&gt;Tutorial&lt;/span&gt;&lt;/a&gt;
        &lt;/li&gt;
    &lt;/ul&gt;

    &lt;div style=&quot;clear:both&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre><h3>Step 2. CSS</h3><p>Here are used CSS styles. First two selectors (you can skip it) belong to our demo page. All rest &#8211; menu #8 styles.</p><h4>css/style.css</h4><pre class="brush:css">
/* demo page styles */
body {
    background:#eee;
    margin:0;
    padding:0;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 11px;
}
.example {
    position:relative;
    background:url(&quot;../images/background.jpg&quot;) no-repeat scroll center center #fff;
    width:600px;
    height:510px;
    border:1px #000 solid;
    margin:20px auto;
    padding:20px;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}

/* navigation menu styles - main styles */
ul.navi {
    position:relative;
    z-index:100;
    padding:0;
    margin:0 0 0 60px;
    list-style:none;
    width:auto;
    height:30px;
}
ul.navi &gt; li {
    width:48px;
    height:30px;
    position:absolute;
    left:0;
    top:0; 

    -moz-transition: -moz-transform 0.5s ease-in-out;
    -ms-transition: -ms-transform 0.5s ease-in-out;
    -o-transition: -o-transform 0.5s ease-in-out;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}
ul.navi a {
    display:block;
    width:48px;
    height:30px;
    position:absolute;
    left:0;
    top:0;
    line-height:30px;
    text-align:center;
    text-decoration:none;
}
ul.navi a img {
    border:0;
}
ul.navi a span {
    position:absolute;
    left:5px;
    font-size:11px;
    font-weight:bold;
    color:#fff;
}

/* top line - hover styles */
ul.navi:hover {
    height:100px;
}
ul.navi:hover li#n1 {
    -moz-transform: translatex(0px);
    -ms-transform: translatex(0px);
    -o-transform: translatex(0px);
    -webkit-transform: translatex(0px);
    transform: translatex(0px);
}
ul.navi:hover li#n2 {
    -moz-transform: translatex(70px);
    -ms-transform: translatex(70px);
    -o-transform: translatex(70px);
    -webkit-transform: translatex(70px);
    transform: translatex(70px);
}
ul.navi:hover li#n3 {
    -moz-transform: translatex(140px);
    -ms-transform: translatex(140px);
    -o-transform: translatex(140px);
    -webkit-transform: translatex(140px);
    transform: translatex(140px);
}
ul.navi:hover li#n4 {
    -moz-transform: translatex(210px);
    -ms-transform: translatex(210px);
    -o-transform: translatex(210px);
    -webkit-transform: translatex(210px);
    transform: translatex(210px);
}
ul.navi:hover li#n5 {
    -moz-transform: translatex(280px);
    -ms-transform: translatex(280px);
    -o-transform: translatex(280px);
    -webkit-transform: translatex(280px);
    transform: translatex(280px);
}

/* submenus - common styles */
ul.sub {
    padding:0;
    margin:0;
    list-style:none;
    width:48px;
    height:30px;
    position:absolute;
    left:0;
    top:0;
    z-index:-1;
    opacity:0;

    -moz-transition: opacity 0s linear 1s;
    -ms-transition: opacity 0s linear 1s;
    -o-transition: opacity 0s linear 1s;
    -webkit-transition: opacity 0s linear 1s;
    transition: opacity 0s linear 1s;
}
ul.sub li {
    width:48px;
    height:30px;
    position:absolute;
    left:0;
    top:0;
    z-index:-1;

    -moz-transition: -moz-transform 0.5s ease-in-out 0.5s;
    -ms-transition: -ms-transform 0.5s ease-in-out 0.5s;
    -o-transition: -o-transform 0.5s ease-in-out 0.5s;
    -webkit-transition: -webkit-transform 0.5s ease-in-out 0.5s;
    transition: transform 0.5s ease-in-out 0.5s;
}

/* submenus - hover styles */
ul.navi &gt; li:hover ul {
    opacity:1;

    -moz-transition: opacity 0s linear 0.5s;
    -ms-transition: opacity 0s linear 0.5s;
    -o-transition: opacity 0s linear 0.5s;
    -webkit-transition: opacity 0s linear 0.5s;
    transition: opacity 0s linear 0.5s;
}
ul.navi li:hover ul li.l {
    -moz-transform: translatex(-70px) translatey(60px);
    -ms-transform: translatex(-70px) translatey(60px);
    -o-transform: translatex(-70px) translatey(60px);
    -webkit-transform: translatex(-70px) translatey(60px);
    transform: translatex(-70px) translatey(60px);
}
ul.navi li:hover ul li.c {
    -moz-transform: translatey(60px);
    -ms-transform: translatey(60px);
    -o-transform: translatey(60px);
    -webkit-transform: translatey(60px);
    transform: translatey(60px);
}
ul.navi li:hover ul li.r {
    -moz-transform: translatex(70px) translatey(60px);
    -ms-transform: translatex(70px) translatey(60px);
    -o-transform: translatex(70px) translatey(60px);
    -webkit-transform: translatex(70px) translatey(60px);
    transform: translatex(70px) translatey(60px);
}
</pre><h3>Step 3. Images</h3><p>Few images &#8211; background of our demo and button icon:</p><pre class="sources">
    <img src="http://www.script-tutorials.com/demos/126/images/background.jpg" alt="page background" />
    <img src="http://www.script-tutorials.com/demos/126/images/btn.png" alt="button" />
</pre><hr
/><h5 style="text-align: center;"><strong><a
title="Creating CSS3 animated menu 8 - demo 126" href="http://www.script-tutorials.com/demos/126/index.html" target="_blank" rel="nofollow">Live Demo</a></strong></h5><h5 style="text-align: center;"><strong><a
title="Creating CSS3 animated menu 8 - demo 126" href="http://www.script-tutorials.com/demos/126/source.zip" target="_blank" rel="nofollow">download in package</a></strong></h5><hr
/><h3>Conclusion</h3><p>Today we made new nice menu (eighth), Your comments and thanks are very welcomed. Good luck!</p><div
class="shr-publisher-933"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/how-to-create-a-pure-css3-animated-buttons/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/184/thumb.png" alt="Creating Fantastic Animated Buttons using CSS3" /> <br
/> Creating Fantastic Animated Buttons using CSS3</a></li><li> <a
href="http://www.script-tutorials.com/css3-green-marble-menu/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/179/thumb.png" alt="Creating a Marble Style CSS3 Navigation Menu" /> <br
/> Creating a Marble Style CSS3 Navigation Menu</a></li><li> <a
href="http://www.script-tutorials.com/creating-css3-slideout-menu-5/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/107/thumb.png" alt="Creating CSS3 Slideout Menu #5" /> <br
/> Creating CSS3 Slideout Menu #5</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/creating-css3-animated-menu/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>10 Most Creative jQuery Navigation Plugins</title><link>http://www.script-tutorials.com/10-most-creative-jquery-navigation-plugins/</link> <comments>http://www.script-tutorials.com/10-most-creative-jquery-navigation-plugins/#comments</comments> <pubDate>Fri, 29 Jul 2011 17:50:52 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[jQuery]]></category> <category><![CDATA[resources]]></category> <category><![CDATA[jquery navigation]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[plugins]]></category><guid
isPermaLink="false">http://www.script-tutorials.com/?p=833</guid> <description><![CDATA[10 most creative jQuery plugins for navigation This is collection of most attractive jQuery plugins for navigation (menu). This is various plugins including context menus, floating, dropdown and other custom menus. 1. AoG Carousel 3D-like spinning carousel menu. Anything manipulating with mouse. Online demo you can find here. 2. A Simple Good Looking Context Menu [...]<div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/10-most-creative-jquery-plugins-for-tables/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/114/thumb.png" alt="10 most creative jQuery plugins for tables" /> 10 most creative jQuery plugins for tables</a></li><li> <a
href="http://www.script-tutorials.com/10-fresh-jquery-plugins-may-2011/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/73/thumb.png" alt="10 Oven Fresh jQuery Plugins" /> 10 Oven Fresh jQuery Plugins</a></li><li> <a
href="http://www.script-tutorials.com/10-interesting-jquery-plugins-august-2011/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/131/thumb.png" alt="10 interesting jQuery plugins (august 2011)" /> 10 interesting jQuery plugins (august 2011)</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="thumb"><img
width="128" height="128" class="aligncenter" title="Ten jQuery plugins for navigation" src="http://www.script-tutorials.com/demos/108/thumb.png"></div><p><strong>10 most creative jQuery plugins for navigation</strong><br
/> <br
/>This is collection of most attractive jQuery plugins for navigation (menu). This is various plugins including context menus, floating, dropdown and other custom menus.<br
/> <span
id="more-833"></span></p><hr
/><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/3DcarouselAaog">1. AoG Carousel</a></h3><p>3D-like spinning carousel menu. Anything manipulating with mouse. Online demo you can find <a
rel="nofollow" target="_blank" href="http://mattpark.me/#demo=carousel">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img1.jpg" alt="AoG Carousel" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/simple-context-menu">2. A Simple Good Looking Context Menu</a></h3><p>This is context menu made with jQuery which looks and behave same as default windows context menu. Online demo you can find <a
rel="nofollow" target="_blank" href="http://joewalnes.github.com/jquery-simple-context-menu/example.html">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img2.jpg" alt="A Simple Good Looking Context Menu" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/WizardSteps">3. WizardSteps</a></h3><p>This plugin will help us to prepare nice looking bar with steps of your wizard (installator). Online demo you can find <a
rel="nofollow" target="_blank" href="http://jsfiddle.net/jrdiaz/kbsMW/">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img3.jpg" alt="WizardSteps" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/Sliding_Tabs">4. Sliding Tabs</a></h3><p>Nice plugin for creating custom tabs and make them slideable with the mouse scroll wheel or directional buttons. Online demo you can find <a
rel="nofollow" target="_blank" href="http://www.kristiandre.net/slidingtabs/">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img4.jpg" alt="Sliding Tabs" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/Javascript_Huge_Vertical_Menu">5. Huge Vertical Menu</a></h3><p>Will give you possibility to create attractive vertical menu with different effects. Online demo you can find <a
rel="nofollow" target="_blank" href="http://alexandraipate.com/themeforest/jQueryVerticalMenu/vertical-menu/index.html">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img5.jpg" alt="Huge Vertical Menu" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/Sticklr_Sticky_Side_Panel">6. Sticklr</a></h3><p>Great sticky side panel (CSS3). Stylish panel will help you to put here various elements &#8211; from mailbox element to custom form. Online demo you can find <a
rel="nofollow" target="_blank" href="http://amatyr4n.com/codecanyon/sticklr/">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img6.jpg" alt="Sticklr" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/agFariy">7. Aes Grave Fairy</a></h3><p>Will add to your menu flying fairy (intended to be shining sparkle). Online demo you can find <a
rel="nofollow" target="_blank" href="http://aesgrave.pl/plugins/agfairy/">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img7.jpg" alt="Aes Grave Fairy" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/ddmegamenu">8. DD Mega Menu</a></h3><p>This is multilevel menu that supports arbitrary sub menu layouts, such as multiple<br
/> columns of links or even arbitrary HTML. Online demo you can find <a
rel="nofollow" target="_blank" href="http://dynamicdrive.com/dynamicindex1/ddmegamenu.htm">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img8.jpg" alt="DD Mega Menu" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/winmenu">9. Win Menu</a></h3><p>Simple menu bar whick looking similar windows menu. Online demo you can find <a
rel="nofollow" target="_blank" href="http://hayotsyan.com/menu.html">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img9.jpg" alt="Win Menu" /></p><h3><a
rel="nofollow" target="_blank" href="http://plugins.jquery.com/project/Sticky_Mega_Menu_Bar">10. Sticky Mega Menu Bar</a></h3><p>Another one good navigation menu with support of custom content. Online demo you can find <a
rel="nofollow" target="_blank" href="http://www.fusiondevs.com/lab/sticky2/index.html">here</a>.<br
/> <img
src="http://www.script-tutorials.com/demos/108/img10.jpg" alt="Sticky Mega Menu Bar" /></p><hr
/><h3>Conclusion</h3><p>Hope that our new collection of menu related jQuery plugins was really interesting for you. Good luck!</p><div
class="shr-publisher-833"></div><div
id="main-related"><h4>Related Stuff You Will Love!</h4><ol
class="related-posts"><li> <a
href="http://www.script-tutorials.com/10-most-creative-jquery-plugins-for-tables/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/114/thumb.png" alt="10 most creative jQuery plugins for tables" /> <br
/> 10 most creative jQuery plugins for tables</a></li><li> <a
href="http://www.script-tutorials.com/10-fresh-jquery-plugins-may-2011/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/73/thumb.png" alt="10 Oven Fresh jQuery Plugins" /> <br
/> 10 Oven Fresh jQuery Plugins</a></li><li> <a
href="http://www.script-tutorials.com/10-interesting-jquery-plugins-august-2011/" rel="bookmark"> <img
src="http://www.script-tutorials.com/demos/131/thumb.png" alt="10 interesting jQuery plugins (august 2011)" /> <br
/> 10 interesting jQuery plugins (august 2011)</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.script-tutorials.com/10-most-creative-jquery-navigation-plugins/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching using disk: basic

Served from: www.script-tutorials.com @ 2012-02-04 21:50:34 -->
