- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
悬停时看起来不错,但是如果您将光标向下移动一点点或移到实际的下拉黑框上,悬停就会消失。我遇到了一些障碍,需要一些帮助。
Index.html
<!doctype html>
<head>
<link rel="stylesheet" type="text/css" href="style2.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<nav>
<ul id="headNav">
<li id="item1" class="mega">
<h2> <a href="" class="hover">Item 1</a></h2>
<div id="item1" class="dropdown gradbackground">Sub-Item 1</div>
</li>
<li id="item2" class="mega">
<h2> <a href="" class="hover">Item 2</a></h2>
<div id="item2" class="dropdown gradbackground">Sub-Item 2</div>
</li>
</ul>
<div class="clear"></div>
</nav>
</body>
</html>
CSS
a {color:#fff;}
/* Mega Menu*/
ul#headNav
{
width: 100%;
height: 40px;
margin: 16px 0 10px 0;
padding: 0;
list-style: none;
background: #484848; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ4NDg0OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMTMwMzAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, #484848 0%, #313030 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#484848), color-stop(100%,#313030)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #484848 0%,#313030 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #484848 0%,#313030 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #484848 0%,#313030 100%); /* IE10+ */
background: linear-gradient(to bottom, #484848 0%,#313030 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#484848', endColorstr='#313030',GradientType=0 ); /* IE6-8 */
border-radius: 4px;
border: 1px solid #3B3B3B;
}
ul#headNav li {
height: 39px;
position: relative;
float: left;
padding: 0px 8px;
border-right: 1px solid #565656;
}
ul#headNav li a {
width: 126px;
height: 40px;
position: relative;
top: -10px;
display: block;
line-height: 60px;
text-align: center;
background: url(../img/nav/home.png) no-repeat 0 0;
z-index: 10;
}
ul#headNav li .hover:hover, ul#headNav li a:hover {
height: 60px;
background: #474747;
border-radius: 5px 5px 0px 0px;
}
ul#headNav li:nth-of-type(8n) {border-right:none;}
li#recording a.hover
{
line-height: 18px;
top: 2px;
}
ul#headNav li a {
width: 101px;
background: url(../img/nav/home.png) no-repeat 0 0;
}
a#BuyNow { line-height: 38px;}
a#BuyNow:hover { text-decoration:underline; color:#fff!important;}
#quicksearch
{
position: relative;
float: left;
margin-right: 44px;
}
nav h2
{
text-transform:capitalize;
font-size:13px !important;
color:#000000;
font-weight:bold;
margin:0;
padding:0 0px;
line-height:28px !important;
height:0px;
}
a.liLink {background:none !important; border:none ;}
/* End Mega Menu */
.dropdown
{
display: none;
width:570px;
position: absolute;
top:23px;
padding:10px;
height:auto;
min-height:400px;
color: #ffffff;
-webkit-box-shadow: 0px 4px 4px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 4px 4px rgba(0,0,0,0.3);
box-shadow:0px 4px 4px rgba(0,0,0,0.3);
z-index:99;
font-weight:bold;
z-index:999999;
border-top:16px solid #474747;
background:#000;
}
.regtable
{
margin:20px 0px 0px 30px;
}
#item1.dropdown {top: 50px; left: 8px; }
#item2.dropdown {left: 8px; top: 50px; }
ul.megacatlist li ul li, ul.megabrandlist li ul li
{
display:block !important;
position: relative !important;
float:none !important;
line-height:16px !important;
border:none !important;
padding:0 !important;
margin:0px 0 1px 0 !important;
text-transform:none !important;
height:20px;
}
ul.megacatlist li ul li a, ul.megabrandlist li ul li a
{
color: #666666 !important;
text-decoration:none;
font-size:12px;
line-height:16px !important;
padding:1px 5px 0px 5px !important;
border:none;
width:auto;
display:block;
height:100%;
text-transform:none !important;
}
ul.megacatlist li ul li a:hover, ul.megabrandlist li ul li a:hover
{
text-decoration:underline !important;
border:none !important;
}
.topNavSection a{color:#ffffff;}
.topNavSection h3{padding:5px;border:none; text-decoration:underline;}
.dropdown a, .dropdown ul li ul li {
color: #4D4D4D;
font-size: 14px !important;
padding: 0px 0px 0px 5px;
position: relative;
text-decoration: none;
text-transform: none !important;
display:block;
width: 100%;
height: 100%;
line-height: 30px;
}
.dropdown a:hover, .dropdown ul li ul li:hover
{
margin:0px;
padding-left:5px;
text-decoration:underline;
display:block;
}
#topnav ul {
display: block;
list-style: none outside none;
margin: 0;
padding: 0;
position: relative;
width: 100%;
}
.dropdown ul li ul {
margin-right: 0 !important;
}
#topnav ul li {
font-size: 16px;
margin-right: 51px;
}
#topnav ul li {
display: block;
float: left;
font-size: 14px;
margin: 0 35px 0 0;
padding: 2px 5px;
text-transform: uppercase;
width: auto;
}
.dropdown ul li ul li {
display: block !important;
float: none !important;
margin-right: 0 !important;
}
.dropdown ul li {
display: block;
float: left !important;
margin-left: 0 !important;
margin-right: 15px !important;
max-width: 226px !important;
padding-left: 0 !important;
position: relative;
text-align: left;
width: auto !important;
border: medium none !important;
}
.dropdown ul li:nth-of-type(2n)
{
margin:0px;
}
/*end mega menu*/
JS
/* start megamenu script */
function slideSubDown() {
$(".mega").children('.dropdown').slideUp("fast");
$(this).children('.dropdown').slideDown({
speed: 1600,
easing: "swing"
})
//$(this).children('a').addClass("pointer");
}
function slideSubUp() {
$(".mega").children('.dropdown').slideUp("250");
//$(this).children('a').removeClass("pointer");
}
$(".mega").hoverIntent(slideSubDown, slideSubUp);
/*end megamenu script */
最佳答案
将鼠标悬停在整个列表项上(而不是仅在 h2 标签上),这样它就包含了下拉菜单,您应该会得到预期的行为
关于jquery - super 菜单下拉悬停问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12074398/
问题比较Java,但是我想在Android中实现: 假设有 3 个或更多类相互扩展: class A { ... int color; ... } class B extend
我知道标题听起来有点奇怪,但这正是我愿意做的。简单解释:A类是B类的子类,B类也是C类的子类>. 现在,所有这些类都包含方法m()。在我的 A 类中,这是我唯一可以访问的类,因为其他类仅在运行时可用,
我有一个 UIViewController 类 A 和 B。 A 使用以下方式加载 B:[A.view addSubView B.view]。 B 有一个带有“后退”按钮的导航栏。我想在单击时返回到
我有以下(第三方)类结构。我们将调用第三方项目 ProjectSeriously,并注意我使用 System.out.println 代替其他复杂的功能(100 行代码) . class A {
在下面的代码中,我从 Game 扩展了 MyGame。我有两个问题: 我们是否需要为所有render()、dispose()、pause()调用super方法 和 resize(w,h)?很多人都没有
例如,假设我想在调用 super.viewDidLoad() 时跳过一级。所以我希望能够做这样的事情: override func viewDidLoad() { super.super.vi
public class Faculty extends Employee { public static void main(String[] args) { new Fac
假设我有: class Superclass { //fields... methodA() {...} methodB() {...} ... } class Subclass exte
这个问题在这里已经有了答案: Why is super.super.method(); not allowed in Java? (22 个答案) 关闭 9 年前。 我怀疑我想做的事情是否可行。我有
我有一个实现 Initializable 的类。 public abstract class ExampleClass implements Initializable { public vo
我想知道,我有这个大数组,是否可以只在内存中使用一次而不是每个线程一次?以 stackoverflow 上的标签为例。他们几乎从不改变,为什么不为他们留下一个内存点呢?甚至可能将该数组永久保存在内存中
假设这三个类具有这个简单的层次结构: class A { func foo() { print("A") } } class B: A { override fu
有没有办法在 TypeScript 中调用 super.super.methodName。我想避免调用super.methodName,但我想调用二祖的methodName方法。 谢谢。 最佳答案 T
这个问题已经有答案了: When do I use super()? (11 个回答) 已关闭 7 年前。 package Geometry; public abstract class Geomet
我必须执行and()在我的实现 Predicate 的业务对象上. 出现问题的代码是 and() 行调用: Predicate predicate = new M
我有一个实现接口(interface)的抽象父类(super class): public abstract class FooMatrix implements Matrix { publi
我有四个 UIView:viewA 是 Root View ,它有 viewB 作为它的 subview 。 viewB 将 viewC 作为其 subview ,而 viewC 将 viewD 作为
有什么区别: class Child(SomeBaseClass): def __init__(self): super(Child, self).__init__() 和:
我有一个通用接口(interface) interface ListList extends List> .由于某些原因,我无法转换 ListList至 List> .有什么方法可以做到吗?为什么它不
我想调用带有两个参数的父类(super class)的构造函数,所以我调用了 super(arguments),但是编译器说: “类 Person 中的构造函数 Person 不能应用于给定类型; 要
我是一名优秀的程序员,十分优秀!