How to Use jQuery technology to develop ios-style page navigation menu _ jquery-js tutorial

Source: Internet
Author: User
This article describes how to use jQuery to develop ios-style page navigation menus. For more information, see:

IOS-style operating systems and navigation methods are becoming increasingly popular in the market. In today's jQuery tutorial, we will introduce how to generate an iphone-style menu navigation.

HTML code

We use the embedded

  • To generate the menu content and include it in Label, as follows:

       
        
    Navigation menu
        
      
    • Tutorial
      • HTML tutorial
        • HTML5 tutorial on GBin1-Article 1: HTML5 Introduction
        • HTML5 tutorial on GBin1-Article 2: HTML5 Elements
        • HTML5 tutorial on GBin1-Part 3: HTML5 Video elements
        • HTML5 tutorial on GBin1-Article 4: HTML5 Video Doc
        • HTML5 tutorial on GBin1-Article 5: HTML5 Audio elements
      • GBin1 highlights
        • GBin1 Web highlights #1
        • GBin1 Web highlights #2
        • GBin1: Web highlights #3

    ... ...

    Javascript

    Use jQuery to query and traverse li and generate menu items as follows:

    $(function(){ var nav = $("nav"),navTitle = nav.children().first(),navTitleLabel = navTitle.text(),mainList = navTitle.next(),subLevels = mainList.find("ul"),hiddenClass = "hidden"; nav.addClass("js");mainList.find("a:last-child").addClass("files");subLevels.addClass(hiddenClass); navTitle.wrap($("

    ")).before($("", {href: "#",className: hiddenClass,click: function(e){var $this = $(this),activeList = subLevels.filter(":visible:last"),activeListParents = activeList.parents("ul");navTitle.text($this.text());if(activeListParents.length > 2)$this.text(activeListParents.eq(1).prev().text());else if (activeListParents.length > 1)$this.text(navTitleLabel)else$this.addClass(hiddenClass).empty();setTimeout(function(){activeList.addClass(hiddenClass);}, slideDuration - 100);mainList.css("left", parseInt(mainList.css("left")) + navWidth + "px");e.preventDefault();}})); subLevels.prev().wrap($("", {href:"#",click: function(e){var $this = $(this);backArrow.removeClass(hiddenClass).text(navTitle.text());navTitle.text($this.text());$this.next().removeClass(hiddenClass);mainList.css("left", parseInt(mainList.css("left")) - navWidth + "px");e.preventDefault();}})); var backArrow = navTitle.prev(),navWidth = nav.width(),firstSubLevel = subLevels.eq(0),docStyle = document.documentElement.style,slideDuration = 0,timingRatio = 1000; if(docStyle.WebkitTransition !== undefined)slideDuration = parseFloat(firstSubLevel.css("-webkit-transition-duration")) * timingRatio; if(docStyle.MozTransition !== undefined)slideDuration = parseFloat(firstSubLevel.css("-moz-transition-duration")) * timingRatio; if(docStyle.OTransition !== undefined)slideDuration = parseFloat(firstSubLevel.css("-o-transition-duration")) * timingRatio; });


    CSS

    Use images to generate buttons at the top of the page:

    body {font-size: 14px;font-family: Arial;background:#f5f5f8;}.js {position:absolute;width:320px;height:480px;top:50%;left:50%;margin:-280px 0 0 -160px;overflow:hidden;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;background:#fff;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.25);-moz-box-shadow:0 1px 2px rgba(0,0,0,.25);box-shadow:0 1px 2px rgba(0,0,0,.25);}.js .files {background-image:none;}.js .hidden {display:none;}.js * {font-size:14px;font-weight:400;margin:0;padding:0;list-style:none;}.js > p {position:relative;z-index:1;height:44px;text-align:center;font-size:14px;line-height:44px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.4);background:#7f94b0;background:-webkit-gradient(linear,0 0,0 100%,color-stop(0,#b5c0ce),color-stop(0.5,#889bb3),color-stop(0.51,#7f94b0),color-stop(1,#6d83a1));background:-moz-linear-gradient(top center,#b5c0ce,#889bb3 22px,#7f94b0 23px,#6d83a1);border-bottom:1px solid #2d3033;-webkit-border-top-left-radius:5px;-webkit-border-top-right-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-topright:5px;border-top-left-radius:5px;border-top-right-radius:5px;}.js > p a {height:31px;top:7px;left:20px;font-size:14px;line-height:31px;color:#fff;background:url('../images//center.png');}.js > p a, .js > p a:before, .js > p a:after {position:absolute;}.js > p a:before {left:-13px;content:url('../images//left.png');}.js > p a:after {right:-10px;top:0;content:url('../images//right.png');}.js > p a:active {opacity:.65;}.js a {text-decoration:none;}.js ul a {display:block;color:#000;padding:.8em 18px;border-bottom:1px solid #e0e0e0;background:url('images/next.png') no-repeat 94% 50%;}.js ul a:hover {background-color:#edf3fe;}.js a:focus {outline:none;}.js ul {position:absolute;top:0;padding-top:45px;width:100%;-webkit-transition:left .4s ease-out;-moz-transition:left .4s ease-out;-o-transition:left .4s ease-out;}.js ul {left:0;}.js ul ul {left:320px;}

    Yes. Some code looks very clear and I hope you will like it.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.