圆月山庄资源网 Design By www.vgjia.com
这是一个响应式设计的菜单。单击列表图标,当你显示屏大小可以完全水平放下所有菜单项时,菜单水平显示(如图1)。当你的显示屏不能水平放置所有菜单项时,菜单垂直显示(如图2)。 而且显示的时候是以动画的型式显示。效果相当的好。
图1
图2
下面是实现的代码。
html代码:
XML/HTML Code复制内容到剪贴板- <div class="container">
- <!--[if lte IE 8]>
- <style>
- .iconicmenu > label{
- border-width: 7px;
- background: #eee;
- }
- .iconicmenu:hover ul{
- left: 8px; /* show menu onmouseover in IE8 and below */
- }
- </style>
- <![endif]-->
- <div class="iconicmenu">
- <input type="checkbox" id="togglebox" />
- <ul>
- <li><a targe="_blank" href="https://www.jb51.net/Shili/css3%E8%8F%9C%E5%8D%95">Home</a></li>
- <li><a targe="_blank" href="https://www.jb51.net/Shili/css3%E8%8F%9C%E5%8D%95">DHTML</a></li>
- <li><a targe="_blank" href="https://www.jb51.net/Shili/css3%E8%8F%9C%E5%8D%95">CSS Library</a></li>
- <li><a targe="_blank" href="https://www.jb51.net/Shili/css3%E8%8F%9C%E5%8D%95">CSS Gallery</a></li>
- <li><a targe="_blank" href="https://www.jb51.net/Shili/css3%E8%8F%9C%E5%8D%95">JavaScript</a></li>
- <li>
- <label for="togglebox">
- </label>
- </li>
- </ul>
- <label class="toggler" for="togglebox">
- Menu</label>
- </div>
- </div>
这里加入了兼容ie8的hack 。
css代码:
CSS Code复制内容到剪贴板- body
- {
- padding:0; margin:0;
- }
- .container
- {
- width:600px; margin:auto;
- }
- .iconicmenu {
- position: relative;
- height: 45px;
- overflow: hidden;
- }
- .iconicmenu, .iconicmenu * {
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .iconicmenu input[type="checkbox"] { /* checkbox used to toggle menu state */
- position: absolute;
- left: 0;
- top: 0;
- opacity: 0;
- }
- .iconicmenu > label { /* Main label icon to toggle menu state */
- z-index: 1000;
- display: block;
- position: absolute;
- width: 40px;
- height: 40px;
- float: left;
- top: 0;
- left: 0;
- background: white;
- text-indent: -1000000px;
- border: 6px solid black; /* border color */
- border-width: 6px 0;
- cursor: pointer;
- -moz-transition: all 0.3s ease-in;
- -webkit-transition: all 0.3s ease-in;
- transition: all 0.3s ease-in; /* transition for flipping label */
- }
- .iconicmenu > label::after { /* inner stripes inside label */
- content: "";
- display: block;
- position: absolute;
- width: 100%;
- height: 18%;
- top: 19%;
- left: 0;
- border: 6px solid black; /* border color */
- border-width: 6px 0;
- -moz-transition: all 0.3s ease-in;
- -webkit-transition: all 0.3s ease-in;
- transition: all 0.3s ease-in; /* transition for flipping label */
- }
- .iconicmenu ul { /* UL menu inside container */
- margin: 0;
- padding: 0;
- position: absolute;
- margin-left: 40px;
- background: #eee;
- left: -100%; /* hide menu intially */
- height: 40px; /* height of menu */
- font: bold 14px Verdana;
- text-align: center;
- list-style: none;
- opacity: 0;
- -moz-border-radius: 0 5px 5px 0;
- -webkit-border-radius: 0 5px 5px 0;
- border-radius: 0 5px 5px 0;
- -moz-perspective: 10000px;
- perspective: 10000px;
- -moz-transition: all 0.5s ease-in;
- -webkit-transition: all 0.5s ease-in;
- transition: all 0.5s ease-in; /* transition for animating UL in and out */
- }
- .iconicmenu li {
- display: inline;
- margin: 0;
- padding: 0;
- }
- .iconicmenu ul label { /* label button inside UL to close menu */
- cursor: pointer;
- position: relative;
- height: 100%;
- text-align: center;
- }
- .iconicmenu ul label::after { /* label button x */
- content: "x";
- display: inline-block;
- line-height: 14px;
- color: white;
- -moz-border-radius: 50px;
- -webkit-border-radius: 50px;
- border-radius: 50px;
- width: 20px;
- height: 20px;
- background: black;
- font-size: 18px;
- margin: 5px;
- margin-top: 10px;
- -moz-transition: all 0.3s ease-in;
- -webkit-transition: all 0.3s ease-in;
- transition: all 0.3s ease-in;
- }
- .iconicmenu input[type="checkbox"]:checked ~ label, .iconicmenu ul label:hover::after {
- -moz-transform: rotatey(180deg);
- -ms-transform: rotatey(180deg);
- -webkit-transform: rotatey(180deg);
- transform: rotatey(180deg); /* flip labels vertically onMouseover */
- }
- .iconicmenu > label:hover, .iconicmenu > label:hover::after, .iconicmenu input[type="checkbox"]:checked ~ label, .iconicmenu input[type="checkbox"]:checked ~ label::after {
- border-color: darkred; /* highlight color of main menu label onMouseover */
- }
- .iconicmenu input[type="checkbox"]:checked ~ ul {
- left: 8px; /* Animate menu into view */
- opacity: 1;
- -moz-box-shadow: 1px 1px 5px gray;
- -webkit-box-shadow: 1px 1px 5px gray;
- box-shadow: 1px 1px 5px gray;
- }
- .iconicmenu li a {
- display: block;
- float: left;
- text-align: center;
- text-decoration: none;
- color: black;
- margin: 0;
- padding: 10px;
- padding-right: 15px;
- height: 100%;
- }
- .iconicmenu li a:hover {
- background: black;
- color: white;
- }
- /* ----------------------------- CSS Media Queries ----------------------------- */
- /*
- These rules control which portions of the menu gets shown when the screen size is below a certain width.
- By default 2 stages are defined depending on browser screen width.
- */
- @media screen and (max-width: 580px) { /* Hide toggle icon when menu is already open (increases usable menu space by 40px) */
- .iconicmenu input[type="checkbox"]:checked ~ label {
- display: none;
- }
- .iconicmenu input[type="checkbox"]:checked ~ ul {
- margin-left: 0;
- }
- }
- @media screen and (max-width: 560px) { /* Convert horizontal menu to vertical drop down instead (friendly across all screen sizes) */
- .iconicmenu {
- overflow: visible;
- }
- .iconicmenu ul {
- height: auto;
- }
- .iconicmenu ul li {
- min-width: 200px;;
- display: block;
- }
- .iconicmenu ul li a {
- float: none;;
- text-align: left;
- }
- }
以上就是一个纯用css3实现的菜单,是不是很简单呢,谢谢阅读,希望能帮到大家,请继续关注,我们会努力分享更多优秀的文章。
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年12月24日
2024年12月24日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]