- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
以下是我的简单导航代码。单击右上角的图标时会出现两个 div。我还在顶部使用 :before
实现了这些分区的三 Angular 形提示。对于第一个 div,我设置了 overflow:scroll
所以,三 Angular 形的尖端是不可见的。在第二种情况下,它是可见的,因为我没有设置溢出属性。是否有任何变通方法来显示三 Angular 形提示,同时设置溢出属性?
$( document ).ready(function() {
$('html').click(function() {
$(".grid1").hide();
$(".grid2").hide();
});
$( ".icons-container i" ).click(function() {
event.stopPropagation();
if(this.id=="grid1icon")
{
$(".grid1").show();
$(".grid2").hide();
}
else if(this.id=="grid2icon")
{
$(".grid2").show();
$(".grid1").hide();
}
});
});
@charset "utf-8";
body {
}
.nav-container
{
height: 50px;
}
.logo
{
width: 20%;
float: left;
background: #ccc;
height: 100%;
}
.searchboxcontianer
{
width: 50%;
float: left;
height: 100%;
background: #555;
}
.searchbox
{
margin-left: 15%;
margin-top: 1.3%;
position: relative;
}
.searchinput
{
width: 400px;
height: 30px;
margin: 0px;
padding: 2px;
border: none;
outline: none;
border-radius: 3px 0px 0px 3px;
}
.searchbutton
{
width: 80px;
height: 34px;
margin: 0px;
border: 0px;
outline: none;
margin-left: -4px;
top:0px;
position: absolute;
border-radius: 0px 3px 3px 0px;
}
.nav-icons
{
width: 29%;
float: left;
height: 100%;
background: #444;
}
.icons-container
{
width: 50%;
float: right;
padding: 5px 0px;
}
.icons-container i
{
margin: 10px;
color: #fff;
position: relative;
}
.grid1
{
position: absolute;
top:60px;
right: 40px;
background: #eee;
height: 300px;
width: 250px;
border-radius: 5px;
border: solid 2px #555;
display: none;
overflow-y: scroll;
}
.grid1 ul
{
list-style-type: none;
}
.grid1 ul li
{
display: inline-block;
width: 80px;
height: 100px;
border: 1px solid #444;
margin: 2px;
}
.grid1:before
{
border: solid;
border-color: #000 transparent;
border-width: 0px 6px 6px 6px;
position: absolute;
top: -7px;
right: 150px;
z-index: 99;
content: ""
}
.grid2
{
position: absolute;
top:60px;
right: 10px;
background: #eee;
height: 300px;
width: 250px;
border-radius: 5px;
border: solid 2px #555;display: none;
}
.grid2:before
{
border: solid;
border-color: #000 transparent;
border-width: 0px 6px 6px 6px;
position: absolute;
top: -7px;
right: 150px;
z-index: 99;
content: ""
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="nav-container">
<div class="logo">
Logo goes in here
</div>
<div class="searchboxcontianer">
<div class="searchbox">
<input type="text" class="searchinput" name="search" id="search">
<button class="searchbutton"><i class="fa fa-search"></i></button>
</div>
</div>
<div class="nav-icons">
<div class="icons-container">
<i id="grid1icon" class="fa fa-th"></i>
<div class="grid1">
some content goes in here
<ul>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
</ul>
</div>
<i id="grid2icon" class="fa fa-bell"></i>
<div class="grid2">
some othe content goes in here
</div>
</div>
</div>
</div>
请在完整页面 View 中检查代码段。
最佳答案
只需将另一个容器放入您的菜单容器中,然后对其应用溢出。在具有固定宽度/高度的外部容器上应用 :before
三 Angular 形。
关于jquery - :before gets hidden when setting overflow to scroll/hidden 里面的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32197972/
我想知道是否有任何方法可以调用和使用 overflow:hidden 隐藏得很好的东西。 为了阐明我的意思,在 this example我想知道“This is hidden”是div的隐藏部分。 这
如果我们有以下HTML StackOverflow 使用以下 CSS * { margin: 0; padding: 0; } #i { overflow:
我正在使用 jQuery 制作幻灯片,我有几张图片应该一次滑入一张图片。我正在使用宽度与图像宽度相同的 div:80 像素。我使用了 white-space:no-wrap 和 overflow:hi
如果我有一个样式为 overflow: hidden; 的 div,我发现有时键盘操作会导致 div 滚动。而且由于没有滚动条,所以真的没有办法让 div 回到原来的状态。除了指定样式以防止出现这种情
我有一个 UIImageView,在表格单元格中有一个自定义类,它也使用一个自定义类。 UIImageView 作为单元格自定义类的属性连接。 UIImageView 有一个调用方法的 UITapGe
我正在创建一个网站,在一个 div 中我有一个视频,但我不想在移动设备上显示这个视频,所以我使用 hidden-xs 和 hidden-sm,到目前为止一切顺利。 但是,我的问题是,当我使用这些类时,
我对 C++ 可见性属性有疑问。我已阅读 http://gcc.gnu.org/wiki/Visibility但我不太明白它是如何工作的。 我想在我拥有的一些共享库中隐藏可见性。我相信这意味着符号被隐
我通过CSS的草图创建了一个菱形,它位于一个圆圈的左上角。 我为圆圈设置了overflow: hidden。钻石怎么还能触发cursor: pointer? 这是 project 的代码笔. html
这个问题在这里已经有了答案: Shape with a slanted side (responsive) (3 个答案) 关闭 3 年前。
在使用 Angular Material 时,我一直在看到 aria 属性。有人可以向我解释一下 aria 前缀是什么意思吗?但最重要的是我想了解的是 aria-hidden 和 hidden 属性之
我正在阅读有关 aria 使用的一些内容,并遇到了以下文档: Fourth Rule of ARIA Use 。我不清楚的一个部分是: "Applying aria-hidden to a paren
以下是我的简单导航代码。单击右上角的图标时会出现两个 div。我还在顶部使用 :before 实现了这些分区的三 Angular 形提示。对于第一个 div,我设置了 overflow:scroll
input[type=hidden] 和 visibility : hidden; 有什么区别? 最佳答案 第一个是输入元素,第二个是CSS2中的样式。 visibility: hidden; vis
我遇到了一个奇怪的问题,似乎与浏览器相关(IE9 及更低版本与 IE11),但想知道为什么会出现奇怪的行为。 问题描述:我使用 Spring 框架并使用其相关标签库来检索 JSP 上的数据。有一个称为
我在 viewDidLoad 中的两个 UIView 上将 hidden 属性设置为 YES。单击按钮时,它们将设置为 NO,因此将显示它们。如何在每次单击按钮时使这些属性在是/否之间切换? 最佳答案
我正在尝试使用树状列表实现侧边栏。我希望树中的每个元素只填充一行——没有溢出,没有换行/换行。 overflow: hidden; 可能是一个很好的解决方案,但还有另一个要求 - 每行都有一个绝对 d
我想用 overflow: hidden 隐藏一个超出容器的标题: HTML: Heading CSS: div { overflow: hidden; } h1 { transfor
我对 overflow:hidden 和 body 标签有疑问。这是一个小例子 主体版本(不工作) http://jsfiddle.net/5hGSp/13/ DIV 版本(有效)
html 的“隐藏”属性是一个 bool 值,不需要设置值。仅仅存在就足够了。 “aria-hidden”属性怎么样?光有存在感就够了吗?或者它是否需要设置值“true”? 最佳答案 aria-hid
在我的页面上,我有一个导航菜单和两个内容容器。 内容容器使用overflow:hidden 以便一次只有一个子div 显示。 我希望导航链接充当相关内容的激活器,以便在容器中滚动查看。 因此,例如,如
我是一名优秀的程序员,十分优秀!