- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我有一个 Angular 菜单,它下面有一个渐变,一直延伸到上边缘。我还有一个子导航,它具有在主导航渐变下方运行的不同渐变。一切看起来都不错,但是当您尝试滚动以从子菜单下拉菜单中进行选择时,它不会让您转到主菜单上的下一个元素。我知道这是一个 z-index 问题,但我不知道如何让它看起来和正常运行。
在此先感谢您提供有关此问题的任何线索!!!
我在 jsfiddle 上有它:http://jsfiddle.net/jollyrogerd/EwFHY/3/
CSS:
#cssmenu > ul {
list-style: none;
margin: -95px 0 0 0;
padding: 0;
line-height: 1;
float: left;
display:inline;
}
#cssmenu > ul {
display: block;
position: relative;
width: 610px;
-webkit-transform: rotate(-24deg);
-moz-transform: rotate(-24deg);
-o-transform:rotate(-24deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
#cssmenu > ul li {
display: block;
position: relative;
margin: 0;
padding: 0;
width: 610px;
}
#cssmenu > ul li a {
display: block;
position: relative;
margin: 0;
padding: 8px 20px;
width: 610px;
font-family:"Myriad Pro", "Trebuchet MS", sans-serif;
letter-spacing: .05em;
color: #939598;
text-decoration: none;
text-transform: lowercase;
font-size: 13px;
font-weight: 300;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
#cssmenu > ul li.home>a:hover, #cssmenu > ul li.home:hover>a {
color: #fff;
background: #a2d062;
background: -webkit-linear-gradient(bottom, #6e9b31, #a2d062);
background: -ms-linear-gradient(bottom, #6e9b31, #a2d062);
background: -moz-linear-gradient(bottom, #6e9b31, #a2d062);
background: -o-linear-gradient(bottom, #6e9b31, #a2d062);
border-color: transparent;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
#cssmenu > ul li.productsrev>a:hover, #cssmenu > ul li.productsrev:hover>a {
color: #fff;
background: #61c46e;
background: -webkit-linear-gradient(bottom, #2b8a39, #61c46e);
background: -ms-linear-gradient(bottom, #2b8a39, #61c46e);
background: -moz-linear-gradient(bottom, #2b8a39, #61c46e);
background: -o-linear-gradient(bottom, #2b8a39, #61c46e);
border-color: transparent;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
#cssmenu > ul li.about>a:hover, #cssmenu > ul li.about:hover>a {
color: #fff;
background: #459cc7;
background: -webkit-linear-gradient(bottom, #025e8e, #459cc7);
background: -ms-linear-gradient(bottom, #025e8e, #459cc7);
background: -moz-linear-gradient(bottom, #025e8e, #459cc7);
background: -o-linear-gradient(bottom, #025e8e, #459cc7);
border-color: transparent;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
#cssmenu > ul li.customers>a:hover, #cssmenu > ul li.customers:hover>a {
color: #fff;
background: #2e6dab;
background: -webkit-linear-gradient(bottom, #09427a, #2e6dab);
background: -ms-linear-gradient(bottom, #09427a, #2e6dab);
background: -moz-linear-gradient(bottom, #09427a, #2e6dab);
background: -o-linear-gradient(bottom, #09427a, #2e6dab);
border-color: transparent;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
#cssmenu > ul li.contacts>a:hover, #cssmenu > ul li.contacts:hover>a {
color: #fff;
background: #6852a4;
background: -webkit-linear-gradient(bottom, #3d2975, #6852a4);
background: -ms-linear-gradient(bottom, #3d2975, #6852a4);
background: -moz-linear-gradient(bottom, #3d2975, #6852a4);
background: -o-linear-gradient(bottom, #3d2975, #6852a4);
border-color: transparent;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
#cssmenu > ul ul {
position: absolute;
left: 120px;
top: -9999px;
padding-left: 0px;
padding-top: 40px;
opacity: 0;
z-index: 1;
}
#cssmenu > ul ul.bgsubproducts {
background-image: url(http://dev.unnaturallygeisha.com/fellowrobots/wp-content/uploads/2013/02/square-gradient.png);
background-repeat:no-repeat;
overflow: visible;
height: 200px;
margin-top:-40px;
margin-left: 0px;
z-index:-100;
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-o-transition: opacity 1s;
}
#cssmenu > ul ul.bgsubabout {
background-image: url(http://dev.unnaturallygeisha.com/fellowrobots/wp-content/uploads/2013/02/square-gradient.png);
background-repeat:no-repeat;
overflow: visible;
height: 200px;
margin-top:-40px;
margin-left: 0px;
z-index:-100;
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-o-transition: opacity 1s;
}
#cssmenu > ul ul.bgsubcustomers {
background-image: url(http://dev.unnaturallygeisha.com/fellowrobots/wp-content/uploads/2013/02/square-gradient.png);
background-repeat:no-repeat;
overflow: visible;
height: 200px;
margin-top:-40px;
margin-left: 0px;
z-index:-100;
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-o-transition: opacity 1s;
}
#cssmenu > ul ul li a {
color: #5d6064;
background: transparent;
z-index:1000;
}
#cssmenu > ul ul li.subproducts:hover>a {
color: #2b8a39;
background: transparent;
}
.subproducts {
z-index:1000;
}
#cssmenu > ul ul li.subabout:hover>a {
color: #025e8e;
background: transparent;
}
#cssmenu > ul ul li.subcustomers:hover>a {
color: #09427a;
background: transparent;
}
#cssmenu > ul li:hover>ul {
top: 30px;
opacity: 1;
}
HTML:
<div id='cssmenu'>
<ul>
<li class='home'><a href="#" title="Link 1">home</a>
</li>
<li class='productsrev'> <a href="#" title="Link 3">products</a>
<ul class="bgsubproducts">
<li class='subproducts'><a href="#" title="Link 1">helo</a>
</li>
</ul>
</li>
<li class='about'><a href="#" title="Link 3">about</a>
<ul
class="bgsubproducts">
<li class='subabout'><a href="#1" title="Link 1">what's a telepresence robot?</a>
</li>
<li class='subabout'><a href="#1" title="Link 1">our team</a>
</li>
<li class='subabout'><a href="#1" title="Link 1">our robots</a>
</li>
<li class='subabout'><a href="#1" title="Link 1">our partners</a>
</li>
</ul>
</li>
<li class='customers'><a href="#4" title="Link 4">customers</a>
<ul class="bgsubproducts">
<li class='subcustomers'><a href="#1" title="Link 1">driving control panel</a>
</li>
<li class='subcustomers'><a href="#1" title="Link 1">instructions</a>
</li>
<li class='subcustomers'><a href="#1" title="Link 1"> setting up your robot</a>
</li>
<li class='subcustomers'><a href="#1" title="Link 1"> driving instructions</a>
</li>
</ul>
</li>
<li class='contacts'><a href="#" title="Link 5">contacts</a>
</li>
</ul>
最佳答案
两种解决方案:
更好的一个:
#cssmenu > ul > li.home:hover a,
#cssmenu > ul > li.productsrev:hover a,
#cssmenu > ul > li.about:hover a,
#cssmenu > ul > li.customers:hover a,
#cssmenu > ul > li.contact:hover a {
z-index:501;
}
#cssmenu > ul > li.home > ul,
#cssmenu > ul > li.productsrev > ul,
#cssmenu > ul > li.about > ul,
#cssmenu > ul > li.customers > ul
#cssmenu > ul > li.contact > ul{
z-index:500;
}
另一个:
JSFiddle .
我将 #cssmenu > ul
、#cssmenu > ul li
、#cssmenu > ul li a
都设置为 width : 90px;
而不是 width: 610px;
然后我添加了这两个:
#cssmenu > ul li ul li,
#cssmenu > ul li ul li a,
#cssmenu > ul >li:hover,
#cssmenu > ul >li:hover > a,
#cssmenu > ul >li > a:hover {
width:610px;
}
请耐心等待:我将子导航 li
和 a
设置为 610px,并将顶级导航设置为 90px
除非它悬停,否则它被设置为 610px
。
之前的问题是顶层导航与子导航重叠,因为它们都设置得太宽了
但是由于 css 转换,它正在动画地从 90px 增长到 610px;
关于在下拉问题下带有渐变的 CSS Angular 菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15169120/
我试图让我的 jQuery 脚本从单击的链接中提取 url,然后将其插入到我的视频标签中。有什么建议吗? 我试过拼接我从 .html() 中得到的内容,但引号总是搞砸了。
我遇到了 docker 的问题。 场景是这样的:我们使用Codebuild+Packer+docker创建AMI,用于deploy。在这一步中,我们从 Artifactory 中提取图像,并且除了提取
我目前正在学习 RxJS。 在文档中,我找到了这个数组。 我尝试在谷歌上搜索“pull and push javascript”,但我什至不知道如何调用这些实体/概念。我不明白那是什么意思?我假设 S
Title 在小屏幕上,我首先需要标题,然后是文本字段,但在中等以上的屏幕上,我需要相反的方式 - 我已经尝试过推和拉,但它们无法工作 - 有什么想法吗? 最佳答案 根据 Swa
zmq 的某些部分未以可预测的方式运行。 我正在使用 VS2013 和 zmq 3.2.4。为了不在我的 pubsub 框架中“丢失”消息 [旁白:我认为这是一个设计缺陷。我应该能够首先启动我的订阅者
我正在编写一个使用嵌套 Bootstrap 列的页面。我正在使用推/拉让列在移动设备上切换位置,而且效果很好。但是,在桌面上我遇到了一些奇怪的间距问题。嵌套列偏移到父列的右侧。 我设置了一个 fidd
在拉取一些 docker 镜像(但不是全部)时出现此错误: failed to register layer: Error processing tar file(exit status 1): op
我创建了一个 Kubernetes 集群,并为每个节点安装了 docker。 当我尝试使用 docker push local_registry_addr:port/image_id 将图像拉取或推送
没有明确地推/拉单个书签,书签何时从 repo 复制/更新到 repo? 在我对两个本地存储库的测试中,我无法推断出一致的行为。有时从 A 到 B 或 B 到 A 的推/拉会复制/更新书签,有时不会。
在 Bootstrap 3 文档中,他们给出了以下使用 push 和 pull 类更改列顺序 (http://getbootstrap.com/css/#grid-column-ordering) 的
从这个问题开始Three column Bootstrap layout with left sidebar at bottom我了解了 Bootstrap 列推拉。 下面的代码片段几乎可以得到我想要
许多 Repo 函数的签名包括 **kwargs,其中文档说,您可以将参数传递给底层包装的 git 命令。但是,*args 没有位置。为了传递类似标志的参数,如 --all。我原以为它们会像 my_r
如果您将大文件推送/拉到设备上,这真的很烦人,现在无法知道它有多远。是否可以运行 adb push 或 adb pull 并使用“bar”实用程序获取进度条? 这里的主要问题是我认为 adb 需要两个
当我尝试使用 Gitkrakent 向/从 Heroku 推/拉时,GitKraken 告诉我: "Please log in to continue" 请求的“用户/登录”是什么? (我个人 Her
我在 docker 容器中有一个 Jenkins 2.150.1。要安装这个 Jenkins,我只需使用 jenkinsci/blueocean:1.9.0图片。 我创建了一个管道,然后尝试使用我的
我想使用 Jenkins 做下一步: 1- docker pull 2- docker run -i -t 我已经在jenkins上安装了docker插件,但是这可行吗? docker plugi
如果我正在处理一些我不想提交的文件,我只需保存它们。然后我有其他文件想要推送到服务器,但是如果其他人对存储库进行了更改,并且我将它们拉下来,它会要求我 merge 或 rebase ..但是这些选项中
无论出于何种原因,我在 FB 上共享链接时尝试使用的图像都无法加载。给出的确切错误是: 提供了og:image,无法下载。发生这种情况的原因有多种,例如您的服务器使用不受支持的内容编码。爬虫接受 de
今天我买了三星 Galaxy Note 3,它配备了 Android 4.3。由于它太新了,我找不到根植我设备的方法,所以我尝试使用 adb 连接……我失败了。 所以,我用了这个 D:\android
我尝试通过 airflow cli test 命令测试 2 个任务` 第一个任务运行,自动将最后一个控制台推送到 xcom,我按预期在 Airflow GUI 中看到了值 some value 当我通
我是一名优秀的程序员,十分优秀!