- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在寻找实现一些简单但挂断它的方法。这是我想要做的事情的粗略副本:http://codepen.io/anon/pen/LGZaPr
我的 col-4 parent 的 Sass:
.col-4 {
background: $primary-color;
color: $heading-two;
font-family: $secondary-font;
text-align: center;
height: 201px;
padding: rem-calc(32px 0);
overflow: visible;
}
介绍内容之前的更多信息内容:
.more-info {
@media #{$xlarge-breakpoint} {
width: calc-percent(70px, $site-width);
}
position:absolute;
width: calc-percent(123px, $site-width);
height: 201px;
background: $base-color;
overflow: hidden;
z-index: 9999;
visibility: hidden;
font-family: $primary-font;
padding: rem-calc(10px);
color: $primary-color;
text-align: left;
@include transition(bottom, 0.3s, ease-in-out);
line-height: 1.3;
@media #{$medium-breakpoint} {
width: 22.115%;
}
&:active {
display: block;
}
&:hover {
display: block;
}
a {
text-transform: uppercase;
font-family: $secondary-font;
text-decoration: none;
color: $primary-color;
&:hover {
color: $heading-two;
}
}
} // .more-info
我的悬停 Sass 看起来像:
.intro-content {
//height: 100%;
&:hover + .more-info {
opacity: 1.0;
display: block;
visibility: visible;
position: relative;
z-index: 100000;
}
}
我想将鼠标悬停在 .intro-content 上以显示 .more-info 中的内容。我希望能够将更多信息 div 保持打开状态,直到我将光标移开,以便任何人都可以单击框中的链接/突出显示任何文本。
感谢任何帮助,谢谢!
最佳答案
好吧,您可以为此使用一些 javascript。像这样的..
我编辑了您的一些 CSS。只需将 js 脚本复制并粘贴到您的代码中,它就会开始工作。我还编辑了你的 CSS 并给了你它的编译版本。可以找到它的 Scss 版本 here
编辑
检查您的网站后,我发现您的 wrapper
类已将溢出设置为隐藏,这会阻止您的弹出窗口完整显示。
我唯一能找到的解决办法就是禁用它。禁用它后,您可以看到整个框 more-info
。 (或将其设置为可见)
.wrapper {
margin: 0 auto;
width: 940px;
overflow: visible;
}
还有这到您的更多信息悬停部分。
#services-menu .col-4 .more-info:hover {
display: block;
position: relative; /*NEW */
}
position relative 会防止弹出框溢出。
接下来是您的媒体查询。
您已根据网页的视口(viewport)设置了宽度。不应该是这样的。。您应该将其设置为 width: 100%
of col-4 然后它可以基于视口(viewport)。这样,more-info
弹出窗口的宽度始终与 col-4
相同。
那就这样吧
#services-menu .col-4 .more-info {
display: none;
position: absolute;
width: 100%; /*instead of the 13.08511% you have as default. */
height: 201px;
background: #ffffff;
overflow: hidden;
z-index: 999;
-moz-transition: bottom, 0.3s, ease-in-out;
-o-transition: bottom, 0.3s, ease-in-out;
-webkit-transition: bottom, 0.3s, ease-in-out;
transition: bottom, 0.3s, ease-in-out;
line-height: 1.3;
}
我认为你不需要媒体查询,所以从你的 css 中删除它。
@media only screen and (min-width: 1441px){
#services-menu .col-4 .more-info {
width: 8.51064%;
}
}
一旦你这样做了。一切都会好起来的。
编辑结束
$("div.intro-content").hover(
function() {
$(this).find("div.more-info").stop().animate({
opacity: 1
}, 500);
},
function() {
$(this).find("div.more-info").stop().animate({
opacity: 0
}, 200);
});
.wrapper {
margin: 0 auto;
width: 940px;
overflow: hidden;
}
#services-menu {
position: absolute;
width: 100%;
height: 272px;
background: blue;
margin-top: 83px;
z-index: 5;
}
#services-menu #services {
padding: 25px 0;
}
#services-menu .col-4 {
position: relative;
background: blue;
color: black;
text-align: center;
height: 201px;
padding: 32px 0;
overflow: visible;
}
#services-menu .col-4 .intro-content:hover + .more-info {
opacity: 1.0;
display: block;
visibility: visible;
z-index: 100000;
}
#services-menu .col-4 .more-info {
/* position:absolute;
width: 123px;
height: 201px;
background: white;
overflow: hidden;
z-index: 9999;
visibility: hidden;
padding: 10px;
text-align: left;
line-height: 1.3;
top: -27px;
left: 41%; */
display: none;
position: absolute;
width: 123px;
height: 201px;
background: white;
overflow: hidden;
z-index: 999;
top: 130px;
left: 44%;
}
#services-menu .col-4 .more-info:active {
display: block;
}
#services-menu .col-4 .more-info:hover {
display: block;
}
#services-menu .col-4 .more-info a {
text-transform: uppercase;
text-decoration: none;
color: blue;
}
#services-menu .col-4 .more-info a:hover {
color: red;
}
#services-menu .col-4 img {
display: block;
margin: 0 auto;
padding-bottom: 18px;
}
#services-menu .col-4 a {
color: blue;
text-decoration: none;
}
#services-menu .col-4 a span {
display: block;
}
<section id="services-menu">
<div class="wrapper">
<div id="services">
<div class="col-4">
<div class="intro-content">
<img src="http://placehold.it/156x96">
<a href="#">Service Name</a>
</div>
<!-- /.intro-content -->
<div class="more-info">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tincidunt eros quis odio porttitor rhoncus. Ut condim</p>
<p><a href="#">Start Here</a></p>
</div>
<!-- /.more-info -->
</div>
<!-- /.col-4 -->
<div class="col-4">
<div class="intro-content">
<img src="http://placehold.it/156x96">
<a href="#">Service Name</a>
</div>
<!-- /.intro-content -->
<div class="more-info">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tincidunt eros quis odio porttitor rhoncus. Ut condim</p>
<p><a href="#">Start Here</a></p>
</div>
<!-- /.more-info -->
</div>
<!-- /.col-4 -->
<div class="col-4">
<div class="intro-content">
<img src="http://placehold.it/156x96">
<a href="#">Service Name</a>
</div>
<!-- /.intro-content -->
<div class="more-info">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tincidunt eros quis odio porttitor rhoncus. Ut condim</p>
<p><a href="#">Start Here</a></p>
</div>
<!-- /.more-info -->
</div>
<!-- /.col-4 -->
<div class="col-4">
<div class="intro-content">
<img src="http://placehold.it/156x96">
<a href="#">Service Name</a>
</div>
<!-- /.intro-content -->
<div class="more-info">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tincidunt eros quis odio porttitor rhoncus. Ut condim</p>
<p><a href="#">Start Here</a></p>
</div>
<!-- /.more-info -->
</div>
<!-- /.col-4 -->
</div>
<!-- /#services -->
</div>
<!-- /.wrapper -->
</section>
<!--/ #services-menu -->
关于css - 将鼠标悬停在 div 上以显示隐藏的 div - 保持事件状态超过父级高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34427898/
代码如下: http://jsfiddle.net/t2nite/KCY8g/ 我正在使用 jquery 创建这些隐藏框。 每个框都有一些文本和一个“显示”和“隐藏”按钮。我正在尝试创建一个“显示/隐
我正在尝试做某事。如果单击一个添加 #add-conferance 然后菜单将显示.add-contact。当点击隐藏然后它显示隐藏。我也将 setTimeout 设置为 7sec,但我希望当我的鼠标
我有一个多步骤(多页?)表单,只要用户按下“下一步”或“上一步”按钮,表单字段就会通过 div 显示和隐藏。 我只想禁用第一个 div (div id="page1"class="pageform")
我有一个使用 IIS 6 和 7 的当前系统,用 ASP.NET 和 .NET 4 中的 C# 编写。 My purpose is to hide the url completely (as per
我正在建立一个网站,并有一个幻灯片。幻灯片有标题和索引,覆盖整个页面。当覆盖被激活时,标题需要消失。当覆盖层被停用时,通过单击退出按钮、缩略图链接或菜单链接,字幕必须返回。 这就是我目前所拥有的
我正在尝试为显示/隐藏功能制作简单的 jquery 代码。但我仍然做错了什么。 $(document).ready(function(){ $('.arrow').click(function
我有一个自定义对话框并使用它来代替 optionMenu。所以我希望 myDialog 表现得像菜单,即在按下菜单时显示/隐藏。我尝试了很多变体,但结果相同: 因为我为 myDialog 设置了一个
在我的项目中,我通过 ViewPager 创建我的 tabBar,如下所示: MainActivity.java mViewPager = (ViewPager) findViewById(R.id.
我目前正在使用一个 Excel 表,我将第 1-17 行分组并在单元格 B18 中写入了一个单元格值。我想知道当我在展开/折叠行时单击 +/- 符号时是否有办法更改 B18 中的值。 例如:我希望 B
我想创建一个按钮来使用 VBA 隐藏和取消隐藏特定组。我拥有的代码将隐藏或取消隐藏指定级别中的所有组: Sub Macro1() ActiveSheet.Outline.ShowLevels RowL
我是 VBA 新手。我想隐藏从任何行到工作表末尾的所有行。 我遇到的问题是我不知道如何编程以隐藏最后写入的行。 我使用下一个函数知道最后写入的单元格,但我不知道在哪里放置隐藏函数。 last = Ra
我想根据另一个字段的条件在 UI 上隐藏或更新一个字段。 例如,如果我有一个名为 Color 的字段: [PXUIField(DisplayName="Color")] [PXStringList("
这是我尝试开始收集通常不会遇到的 GCC 特殊功能。这是@jlebedev 在另一个问题中提到g++的“有效C++”选项之后, -Weffc++ This option warns about C++
我开发了一个 Flutter 应用程序,我使用了 ProgressDialog小部件 ( progress_dialog: ^1.2.0 )。首先,我展示了 ProgressDialog小部件和一些代
我需要在 API 17+ 的同一个 Activity(Fragment) 中显示/隐藏状态栏。假设一个按钮将隐藏它,另一个按钮将显示它: 节目: getActivity().getWindow().s
是否可以通过组件的 ts 代码以编程方式控制下拉列表的显示/隐藏(使用 Angular2 清楚)- https://vmware.github.io/clarity/documentation/dro
我想根据 if 函数的结果隐藏/显示 NiceScroll。 在我的html中有三个部分,从左到右逐一滚动。 我的脚本如下: var section2 = $('#section2').offset(
我有这个 jquery 代码: $(document).ready(function(){ //global vars var searchBoxes = $(".box"); var searchB
这个问题已经有答案了: Does something like jQuery.toggle(boolean) exist? (5 个回答) 已关闭 6 年前。 在 jQuery 中(我当前使用的是 1
我在这样的选择标签上使用 jQuery 的 selectMenu。 $('#ddlReport').selectmenu() 在某些情况下我想隐藏它,但我不知道如何隐藏。 这不起作用: $('#ddl
我是一名优秀的程序员,十分优秀!