- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 UL
,它创建了一个一直显示的菜单:
原始菜单的 HTML 是:
<div id="leftNav">
<span id="logoWM" style="border-bottom: 1px solid #FF7263;"><a href="Default.aspx"><img src="theImages/wmlogo.png" width="219" height="47" alt="Homepage" title=" Homepage" id="imgLogoWM" /></a></span>
<div id="leftNavLinks">
<ul class="mainLevelNav">
<li><a style="width: 100%;" href="why_choose_us.aspx">Why Choose Us</a></li>
<li><a href="physicians.aspx">Physicians</a></li>
<li><a href="medical_specialties.aspx">Medical Specialties</a></li>
<li><a href="locations.aspx">Locations</a></li>
<li><a href="urgent_care.aspx">Urgent Care</a></li>
<li><a href="radiology.aspx">Radiology</a></li>
<li style="border-bottom: none;"><a href="lab.aspx">Lab</a></li>
</ul>
</div>
</div>
CSS 是:
#leftNavLinks {
position:absolute;
width: 100%;
left: 0%;
top: 106px; /* NEW 3/13 */
font-family: 'nexa_boldregular';
font-size: 19px;
}
#leftNavLinks ul {
margin: 0px;
padding: 0px; /* NEW 3/13 */
}
#leftNavLinks li {
list-style: none;
padding: 8px;
}
ul.mainLevelNav li {
border-bottom: #13476F solid;
border-width: 1px;
}
#leftNavLinks a {
color: #fff;
cursor: pointer;
display: block;
height: 25px;
line-height: 25px;
text-indent: 0px;
text-decoration: none;
width: 100%;
}
#leftNavLinks a:hover {
text-decoration: none;
}
#leftNavLinks li:hover {
background: #5196AB;
position: relative;
}
#leftNav {
width: 240px;
height: 412px;
position: fixed;
left: 10px;
top: 42px;
z-index: 2;
background: url('../theImages/bg_80_b.png');
text-align: left;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
}
对于无法显示菜单的屏幕,我添加了一个选项,让用户可以将鼠标悬停在上面以向下滑动并展开原始菜单,因此它并不总是可见的,从而阻止了其他内容。
这是下拉菜单的 UL
:
修改后的菜单的 HTML 是:
<div id="leftNav" style="position: absolute; left: 22px; top: 45px;">
<div class="menu-item">
<h4><a href="#">MENU</a></h4>
<ul>
<li style="display: absolute; top: 0; left: 0; background-color: #FFFF00; text-align: center; height: 75px; line-height: 75px;"><a href="Default.aspx"><img src="theImages/wmlogo.png" width="219" height="47" alt="Westmed Medical Group Homepage" title="Westmed Medical Group Homepage" id="imgLogoWM" /></a></li>
<li id="u"><a href="#">Why Choose Us</a></li>
<li id="u"><a href="#">Physicians</a></li>
<li id="u"><a href="#">Medical Specialties</a></li>
<li id="u"><a href="#">Locations</a></li>
<li id="u"><a href="#">Urgent Care</a></li>
<li id="u"><a href="#">Radiology</a></li>
<li id="u" style="border-bottom: none;"><a href="#">Lab</a></li>
</ul>
</div>
</div>
CSS 是:
* {
margin: 0px;
padding: 0px;
}
body {
background: #669999 url('theImages/bgnav.png') repeat;
}
#leftNav {
font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
line-height: 1.5;
margin: 50px auto;
width: 240px;
-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
-moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.menu-item {
background: url('../theImages/bg_80_b.png');
width: 240px;
font-family: 'nexa_boldregular';
font-size: 19px;
}
/*Menu Header Styles*/
.menu-item h4 {
border-bottom: 1px solid rgba(0,0,0,0.3);
border-top: 1px solid rgba(255,255,255,0.2);
color: #fff;
font-size: 15px;
font-weight: 500;
padding: 7px 12px;
/*Gradient*/
background: #a90329; /* Old browsers */
background: -moz-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a90329), color-stop(44%,#8f0222), color-stop(100%,#6d0019)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* IE10+ */
background: linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019',GradientType=0 ); /* IE6-9 */
}
.menu-item h4:hover {
background: #cc002c; /* Old browsers */
background: -moz-linear-gradient(top, #cc002c 0%, #6d0019 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cc002c), color-stop(100%,#6d0019)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #cc002c 0%,#6d0019 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #cc002c 0%,#6d0019 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #cc002c 0%,#6d0019 100%); /* IE10+ */
background: linear-gradient(top, #cc002c 0%,#6d0019 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc002c', endColorstr='#6d0019',GradientType=0 ); /* IE6-9 */
}
.menu-item h4 a {
color: white;
display: block;
text-decoration: none;
width: 240px;
}
/*ul Styles*/
.menu-item ul {
background: url('theImages/bg_80_b.png');
font-size: 13px;
line-height: 30px;
height: 0px;
list-style-type: none;
overflow: hidden;
padding: 0px;
*Animation*/
-webkit-transition: height 1s ease;
-moz-transition: height 1s ease;
-o-transition: height 1s ease;
-ms-transition: height 1s ease;
transition: height 1s ease;
}
.menu-item:hover ul {
width: 240px;
height: 380px;
}
.menu-item ul a {
color: #fff;
cursor: pointer;
display: block;
height: 25px;
line-height: 25px;
text-indent: 0px;
text-decoration: none;
width: 100%;
font-family: 'nexa_boldregular';
font-size: 19px;
}
/*li Styles*/
.menu-item li#u {
border-bottom: 1px #13476F solid;
padding: 8px;
}
.menu-item li:hover {
background: #5196AB;
}
白底蓝框为logo宽高
我如何修改上面的代码,使其与原始菜单完全匹配,除了在悬停“MENU”时显示。
最佳答案
使用 jQuery clone()
方法复制菜单,然后根据需要更改 css
。
关于html - 如何创建一个与另一个相似的 UL 菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22383176/
我正在尝试使用 jQuery 来提交一个基本的 Accordion 样式菜单。 这是菜单: http://www.cybart.com/bscg/ 这是为其提供 Accordion 功能的代码片段:
这是我的网站: http://www.simply-a-christian.com/index.html 在导航栏上,如果您移动到: 信念 玛丽安教义 您可以看到每个 Marian Dogma(列出了
这可能是一个很容易回答的问题,但是,我找不到解决方案。我已经建立了一个非常简单的菜单,每当我将鼠标悬停在 ul 父项上时,它的子项 ul ul 就会变得可见。基本上它是有效的,但 parent 让位于
这是一张图片: 问题是(你可以看到):“页面”按钮太低,无法点击。我想要的是它应该靠近“联系人”。 现在是代码: HTML Home About
我有一个这样的嵌套 ul 列表: Subcat Subcat2
如果标题不好理解,我来解释一下... 我有一个 css/jquery 切换菜单。按“+”号时它变大,按“-”号时它变小。我使几个元素的填充、边距和高度在切换/单击时发生变化。菜单顶部充满了链接,然后当
我正在尝试创建一个列表,该列表会在单击上/下时更改它的第一个元素。 This is what i want to do. 此代码运行良好。但问题是我也在我网站的主菜单中使用列表,并且这段代码也在我的主
我需要使用水平缩放的 ul > li > ul 的组合来创建一个菜单。每个 ul 都应该有一个 max-height 并在溢出时滚动。悬停在 li 上时,如果里面有另一个 ul 标签,它应该会在右侧打
我正在 ul 中编写 ul 来制作 Accordion 式菜单。但是当我在 html 验证器中检查下面的代码时,它给了我这些错误 Element ul not allowed as child of
我有两个列表,第二个列表是可排序的,我可以从第一个列表拖动到第二个列表,但不知道如何从第一个列表中删除。 如果我删除 helper: "clone" ,该项目 (li) 会被删除,但拖放操作效果不佳(
JSFiddle 问题:https://jsfiddle.net/td6szj3o/ /我有一个 ul li,每个 li 都有标准文本项。该列表是动态的,因此有时每个内容 li 小于其所在容器的 wi
我有两个元素 - 一个在另一个里面。问题是第二个元素显示在第一个 ul li 元素的顶部。 HTML: Home Merchants
我有一些结构如下的菜单: First level link 1 Child link 1 Child link 2
我有很长的ul,李的数目不是恒定的 1 2 3 4 5 6 7 8 9 我想使用Moovweb SDK将其分为两个ul。 1 2 3 4
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎偏离主题,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或 include a mini
我有一棵信息“树”,显示在许多嵌套列表中(ul li ul li ....)。两个问题: 当我点击时,父 ul 和子 ul 都会切换。 如果我点击在其中没有 ul 的嵌套列表中(例如,下面的 Cran
我正在尝试在 jQuery 中创建以下内容: 我有一个项目列表(例如 10 个)。如果项目数超过 6,则将剩余项目(从 6 到 10)复制到新的 UL 中以创建下拉菜单结构。 菜单的第一个版本是 ht
嘿大家 - 我在工作中尝试 jquery 的第二天,有点卡住了。 我有一个无序列表的链接..在无序列表的链接中 点击 ,我想要的 child 变得可见。 点击(文档上的任何位置)后,我想要 child
嗨,这就是我想要实现的目标。我有一个 ID="columns"的 div,在本例中我有 3 列,但可能会有更多或更少...我正在使用 JQuery 动态添加列表项。
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: Using .after() to add html closing and open tags 我想显示高度几乎相
我是一名优秀的程序员,十分优秀!