Sherpa | Complete Navigation System 介绍与教材
这里的夏尔巴人在iPad上使用的一种新的视频。
正如其名称所暗示的,夏尔巴人是所有您的导航需求的整体解决方案。
夏尔巴人带来了每个接口的三个主要的导航元素结合在一起 - 导航栏,侧边栏和页脚粘。
每一个由一个选择不同的菜单类型,包括的:滑动菜单,兆丰菜单,折叠式菜单和下拉菜单。你可以选择,选择和组合这些做一个真正独特的导航。
所有这三个导航元素也可以被最小化或隐藏,让你的内容,甚至更多的空间是seen.The内容会自动增长,以填补空间。
它有10种不同颜色的皮肤, 12美丽的背景图片,使用CSS3的效果,并配有500 +的图标,使其在Codecanyon最好看的导航之一。退房的屏幕截图和预览。
而不是试图来自许多不同来源汇集许多不同的价格较资产净值的,选择夏尔巴|完整的导航系统,并节省自己的时间在整合到系统中。
效果地址:http://www.dnntools.net/EnvatoStore/ArticleID/7607/Sherpa-Complete-Navigation-System
演示地址:http://codecanyon.net/item/sherpa-complete-navigation-system/224492?ref=zzmzaizai

Sherpa updated to v1.2 (July 20th)
- Sherpa toggles now remember their state after page load so if you close them they stay closed.
- Mega Menu and Drop Menu now use the hoverintent plugin for better usability.
Description
Here’s a new video of Sherpa being used on an iPad.
As the name suggests, Sherpa is a total solution for all your navigation requirements.
Sherpa brings together the three main navigation elements of every interface – Navbar, Sidebar and Sticky Footer.
Each one consists of a selection of different menu types including: Slide Menu, Mega Menu, Accordion Menu and Drop Menu. You can pick, choose and mix these to make a really unique navigation.
All three navigation elements can also be minimized or hidden to give your content even more space to be seen.The content will automatically grow to fill the space.
It has 10 different colour skins, 12 beautiful background images, uses CSS3 effects and comes with 500+ icons to make it one of the best looking navigations on Codecanyon. Check out the screenshots and preview.
Instead of trying to bring together lots of different navs from many different sources, choose Sherpa | Complete Navigation Systemand save yourself time on integrating into your system.
Features
- A Complete Solution
- Horizontal Navigation Bar
- Side Navigation Bar
- Sticky Footer Bar
- Slide Menu
- Accordion Menu
- Mega Menu
- Drop Menu
- 10 colour skins
- 12 background images
- 500+ icons
- CSS3 gradients, round corners and shadows
- Smooth animated toggles to hide or minimize navigation
- Cleanly coded using best practices
- Built using established menu building techniques
- Works as pure CSS nav also (everything works except animated toggling)
- Degrades excellently without jQuery
Let the Sherpa guide your users to usability bliss!
Sherpa Update 1.1 (7th July 2011)
- Fixed some CSS bugs
- Fixed footer positioning in IE7
效果地址:http://www.dnntools.net/EnvatoStore/ArticleID/7607/Sherpa-Complete-Navigation-System
演示地址:http://codecanyon.net/item/sherpa-complete-navigation-system/224492?ref=zzmzaizai
Sherpa | Complete Navigation System 介绍与教材的更多相关文章
- X Window System介绍
1.概述 X Window System是1984年由麻省理工学院(MIT)和DEC公司共同开发研究的,是执行在UNIX系统上的视窗系统.严格地说,X Window System并非一个软件, ...
- Test complete测试工具介绍
Test complete 是一款性价比比较高的测试工具,能够满足大多数用户的自动化测试的需求. Test complete 是近几年流行和发展起来的一款自动化测试工具,早期版本由Automated ...
- Navigation Drawer介绍
在2013 google IO当天,Android团的更新了Support库,新版本(V13)的Support库中新加入了几个比较重要的功能. 添加 DrawerLayout 控件,支持创建 Nav ...
- Java +selenium Navigation接口介绍
Navigation接口主要实现对浏览器的前进.后退.打开网址.刷新当前页面等操作的. void back():就是操作当前页面后退,相当于网页的后退按钮. void forward():就是操作当前 ...
- oracle sys sysman system 介绍
Oracle数据库中SYS.SYSTEM.DBSNMP.SYSMAN四用户的区别 SYS用户: SYS,默认密码为CHANGE_ON_INSTALL,当创建一个数据库时,SYS用户将被默认创建并授予D ...
- 推荐系统(Recommendation system )介绍
前言 随着电子商务的发展,网络购物成为一种趋势,当你打开某个购物网站比如淘宝.京东的时候,会看到很多给你推荐的产品,你是否觉得这些推荐的产品都是你似曾相识或者正好需要的呢.这个就是现在电子商务里面的推 ...
- c语言system()介绍
2013-09-0916:06:02 1. 头文件: #include <stdlib.h> 2. 定义函数: int system(const char * string); 3. 函数 ...
- O - Navigation System CodeForces - 1321D
题目大意:有一个导航系统,会根据你当前的位置,规划到目的地的最短路线,给你一个有向图,和一条行驶路径,问你导航重新规划路径的最大次数和最小次数. 读题的时候题意特别不理解,何为最大次数,何为最小次数? ...
- Codeforces 1321D Navigation System
题意 有个人要从\(s\)走到\(t\),经过的路径给定.导航系统每次会显示当前节点到\(t\)的最短路,有多条就显示其中之一.这个人如果按照导航走,那么啥都没变.如果没有按导航走导航就会重新导航.问 ...
随机推荐
- IO流(文件字节输入输出
输入输出流可能有不允许操作,可能有出现错误,必须在try语句中进行 FileOutputStream out1=new FileOutputStream("test1.txt") ...
- java学习笔记(13) —— google GSON 实现json转化方法
1.配置struts.xml <action name="getGsonAction" class="com.test.action.json.GetGsonAct ...
- LRU缓存算法 - C++版
LRU是Least Recently Used的缩写,意思是最近最少使用,它是一种Cache替换算法. 实现思路: hashtable + 双向链表 时间复杂度: 插入,查找,删除:O(1) 空间使用 ...
- 函数式编程做用户登陆注册练习-pycharm上
def login(username,password): """ 用户登陆 :param username: 用户名 :param password:密码 :retur ...
- 修改apk显示或隐藏桌面图标
反编译CM设置,打开AndroidManifest.xml,搜索“DEFAULT”,把他替换为"LAUNCHER",然后回编译,回编译之后签名在用RE放到system\app下该权 ...
- ng-class的使用
例如: td(ng-class="{0:'text-warning',1:'text-primary'}[bj.flag]") {{bj.flag | bjFlagfilter}} ...
- .net performance
http://msdn.microsoft.com/en-us/library/ms173196.aspx http://www.zhihu.com/question/20314377 http:// ...
- LINUX下为LVM磁盘增加硬盘空间
总结: ~~~~~~~~~~~~~~~~~~~~ fdisk -lpvcreate /dev/sdbvgextend VolGroup /dev/sdblvextend -L +180G /dev/m ...
- php 读取 word
---恢复内容开始--- 首先安装com扩展: php.ini php.ini 确保有此语句 [PHP_COM_DOTNET] extension=php_com_dotnet.dll php.i ...
- 动态共享库(so)开发精悍教程
动态共享库(so)开发精悍教程 翻译并根据实际情况进行了小小修改,仅关注Linux下动态共享库(Dynamic shared library .so)的开发. 1 简单的so实例 源文件 //test ...