iOS风格的操作系统和导航方式现在越来越流行,在今天的jQuery教程中,我们将介绍如何生成一个iphone风格的菜单导航。
HTML代码
我们使用镶嵌的<li>来生成菜单内容,并且包含在<nav>标签中,如下:
- <nav>
- <h1>导航菜单</h1>
- <ul>
- <li>
- <h2>专题教程</h2>
- <ul>
- <li>
- <h3>HTML专题教程</h3>
- <ul>
- <li><a href="http://www.gbin1.com/tutorials/html5-tutorial/html5-introduction">GBin1专题之HTML5教程 - 第一篇:HTML5介绍</a></li>
- <li><a href="http://www.gbin1.com/tutorials/html5-tutorial/html5-new-elements">GBin1专题之HTML5教程 - 第二篇:HTML5元素</a></li>
- <li><a href="http://www.gbin1.com/tutorials/html5-tutorial/html5-video">GBin1专题之HTML5教程 - 第三篇:HTML5 Video元素</a></li>
- <li><a href="http://www.gbin1.com/tutorials/html5-tutorial/html5-video-doc">GBin1专题之HTML5教程 - 第四篇:HTML5 Video Doc</a></li>
- <li><a href="http://www.gbin1.com/tutorials/html5-tutorial/html5-audio">GBin1专题之HTML5教程 - 第五篇:HTML5 Audio元素</a></li>
- </ul>
- <li>
- <h3>GBin1热点秀</h3>
- <ul>
- <li><a href="http://www.gbin1.com/tutorials/hotspot/hotspot1/">GBin1专题之Web热点秀#1</a>
- <li><a href="http://www.gbin1.com/tutorials/hotspot/hotspot2/">GBin1专题之Web热点秀#2</a>
- <li><a href="http://www.gbin1.com/tutorials/hotspot/hotspot3/">GBin1专题之Web热点秀#3</a>
- </ul>
- </ul>
- 。。。 。。。
Javascript
使用jQuery来查询遍历li,并且生成菜单项目,如下:
- $(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($("<div/>")).before($("<a/>", {
- 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($("<a/>", {
- 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
使用图片来生成页面顶端的按钮:
- 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 > div {
- 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 > div a {
- height:31px;
- top:7px;
- left:20px;
- font-size:14px;
- line-height:31px;
- color:#fff;
- background:url('../images//center.png');
- }
- .js > div a, .js > div a:before, .js > div a:after {
- position:absolute;
- }
- .js > div a:before {
- left:-13px;
- content:url('../images//left.png');
- }
- .js > div a:after {
- right:-10px;
- top:0;
- content:url('../images//right.png');
- }
- .js > div 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;
- }
搞定! 请参考在线演示查看效果,希望大家喜欢这个简单的效果!
使用jQuery开发iOS风格的页面导航菜单的更多相关文章
-
一款jquery编写图文下拉二级导航菜单特效
一款jquery编写图文下拉二级导航菜单特效,效果非常简洁大气,很不错的一款jquery导航菜单特效. 这款jquery特效适用于很多的个人和门户网站. 适用浏览器:IE8.360.FireFox.C ...
-
jQuery制作右侧边垂直二级导航菜单
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
-
jQuery/CSS3类似阿里巴巴的商品导航菜单实现教程
有两天没发表文章了,今天来说说利用jQuery和CSS3制作一款类似阿里巴巴左侧商品菜单导航,这款菜单看起来非常大气,可以展示非常多的产品类目,如果你在设计电子商务网站,不妨可以拿来参考,一下是效果图 ...
-
UWP开发---通过委托跨页面导航
-前言 做过.Net开发的都了解,当二级窗口操作主窗口的控件时通常用委托的方式.那么在UWP开发中,常常会遇到MainPage的二级Frame里面的内容去操作MainPage的导航跳转,具体看下图: ...
-
WordPress主题开发:输出指定页面导航
实例: <ul> <li class="widget widget_nav_menu"> <?php if(is_page(array(12,14,1 ...
-
用jQuery制作仿网易云课堂导航菜单效果
最近做项目,用到类似的效果. 效果图如下: 直接上代码: HTML: <!DOCTYPE html> <html lang="en"> <head&g ...
-
20款jquery下拉导航菜单特效代码分享
20款jquery下拉导航菜单特效代码分享 jquery仿京东商城左侧分类导航下拉菜单代码 jQuery企业网站下拉导航菜单代码 jQuery css3黑色的多级导航菜单下拉列表代码 jquery响应 ...
-
用CSS做导航菜单的4个理由
导航结构在网站设计中是起到决定性作用的,导航菜单/栏常常通过颜色.排版.形状和一些图片来帮助网站创造更好的视觉和感受,它是网页设计的关键元素.虽然网站导航菜单的外观是网页设计中关系到整个设计成败与否的 ...
-
PhotoSwipe - 移动开发必备的 iOS 风格相册
PhotoSwipe 是一个专门针对移动设备的图像画廊,它的灵感来自 iOS 的图片浏览器和谷歌移动端图像. PhotoSwipe 提供您的访客熟悉和直观的界面,使他们能够与您的移动网站上的图像进行交 ...
随机推荐
-
python基础01 Hello World!
摘要:简单的Hello Word! python 命令行 如已经安装python,那么在linux命令行中输入 $python 将进入python.乱吼在命令行提示符>>>后面输入 ...
-
在PHP中使用Mysqli操作数据库
PHP的 mysqli 扩展提供了其先行版本的所有功能,此外,由于 MySQL 已经是一个 具有完整特性的数据库服务器 , 这为PHP 又添加了一些新特性 . 而 mysqli 恰恰也支持了 这些新特 ...
-
XML的约束(dtd)
DTD(Document Type Definition),文档类型定义,DTD文件应使用UTF-8或Unicode 1.XML中有多少个元素,就在dtd文件中写几个 <!ELEMENT&g ...
-
Standard Numeric Format Strings
The following table describes the standard numeric format specifiers and displays sample output prod ...
-
libeXosip2(3) -- SIP messages and call control API
SIP messages and call control API The SIP messages and call control API. More... Modules eXosip2 INV ...
-
【公开课】【阿里在线技术峰会】魏鹏:基于Java容器的多应用部署技术实践
对于公开课,可能目前用不上这些,但是往往能在以后想解决方案的时候帮助到我.以下是阿里对公开课的整理 摘要: 在首届阿里巴巴在线峰会上,阿里巴巴中间件技术部专家魏鹏为大家带来了题为<基于Java容 ...
-
unix下各种查看“变量”的命令比较
子程序只会继承父程序的环境变量,而不继承其自定义变量. env 查看所有环境变量 set 查看所有变量,包括环境变量和自定义变量 set 还可以给程序位置参数赋值: set 1 2 3 将1赋值给$1 ...
-
Android studio简单布局之view基本属性
本人属于自学上路,目前是在入门阶段,所以有些内容实质性比较少,请各位大佬多多包涵. 视图view的基本属性: layout_margin:定义视图与周围视图之间的空白距离 layout_padding ...
-
(转)Spring Boot(十八):使用 Spring Boot 集成 FastDFS
http://www.ityouknow.com/springboot/2018/01/16/spring-boot-fastdfs.html 上篇文章介绍了如何使用 Spring Boot 上传文件 ...
-
spring+activemq配置文件内容及实现原理
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.sp ...