- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是的,我知道这不是一个词,但我的大脑现在超速运转,我的一天快结束了。
这是代码笔:http://codepen.io/anon/pen/mJKgwd
HTML:
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 col-lg-3 thumb">
<div class="thumbnail-bg">
<a class="thumbnail client-blah1" href="#">
<div class="client-title glyphicon glyphicon-zoom-in"></div>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="680px" height="510px" id="blah1-ph" class="img-responsive"></svg>
</a>
</div>
</div>
<div class="col-xs-12 col-md-4 col-lg-3 thumb">
<div class="thumbnail-bg">
<a class="thumbnail client-blah1" href="#">
<div class="client-title glyphicon glyphicon-zoom-in"></div>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="680px" height="510px" id="blah2-ph" class="img-responsive"></svg>
</a>
</div>
</div>
<div class="col-xs-12 col-md-4 col-lg-3 thumb">
<div class="thumbnail-bg">
<a class="thumbnail client-blah1" href="#">
<div class="client-title glyphicon glyphicon-zoom-in"></div>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="680px" height="510px" id="blah3-ph" class="img-responsive"></svg>
</a>
</div>
</div>
<div class="col-xs-12 col-md-4 col-lg-3 thumb">
<div class="thumbnail-bg">
<a class="thumbnail client-blah1" href="#">
<div class="client-title glyphicon glyphicon-zoom-in"></div>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="680px" height="510px" id="blah4-ph" class="img-responsive"></svg>
</a>
</div>
</div>
<div class="col-xs-12 col-md-4 col-lg-3 thumb">
<div class="thumbnail-bg">
<a class="thumbnail client-blah1" href="#">
<div class="client-title glyphicon glyphicon-zoom-in"></div>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="680px" height="510px" id="blah5-ph" class="img-responsive"></svg>
</a>
</div>
</div>
</div>
</div>
CSS:
.thumb {
transform: translateZ(0);
margin-bottom: 30px;
position: relative;
}
.thumbnail-bg {
background-color: rgba(34, 34, 34, 1.0);
}
.thumbnail {
border-radius: 0;
border: 0 !important;
background-position: 50% 50%;
background-repeat: no-repeat;
width: 100%;
max-height: 300px;
overflow: hidden;
transition: opacity 1s ease;
}
.thumbnail:hover {
opacity: 0.2;
}
.thumbnail:hover .client-title {
display: block;
}
.client-title {
width: 100%;
text-align: center;
font-size: 5em;
text-shadow: 1px 1px 0 rgb(34, 34, 34), 0 0 0 rgb(34, 34, 34), 1px 1px 8px rgb(34, 34, 34);
display: none;
position: absolute;
top: 50%;
left: 0;
color: rgb(231, 231, 231);
transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
.thumbnail {
max-height: 200px;
}
}
.client-blah1 { background-image: url('https://placeholdit.imgix.net/~text?txtsize=33&txt=300%C3%97300&w=300&h=300'); }
除了让覆盖的字形图标在悬停时显示在不透明层“上方”之外,一切正常。
我尝试了很多不同的方法,包括使用 z-index、在代码周围物理移动 div 元素(即在子元素之外设置为低不透明度以允许 BG 颜色通过)。
我不太确定从这里开始该怎么做,代码是直接从实际站点代码中摘录的,所以我知道这不是代码库中其他地方的环境/其他问题,因为在 codepen 中也会发生同样的事情。
我确信这是我忽略的一些简单和基本的东西,但我想我无法像他们说的那样只见树木不见森林。
任何帮助将不胜感激,在此先感谢。
PS 我不想默认使用基于 jQuery 的解决方案,CSS 已经达到 99.9%。
最佳答案
您需要在缩略图类上使用带 rgba 的背景色。这样 css 只会改变背景的不透明度/alpha,而不是像不透明度那样改变整个容器。
.thumb {
transform: translateZ(0);
margin-bottom: 30px;
position: relative;
}
.thumbnail-bg {
background-color: rgba(34, 34, 34, 1.0);
}
.thumbnail {
border-radius: 0;
border: 0 !important;
background-position: 50% 50%;
background-repeat: no-repeat;
width: 100%;
max-height: 300px;
overflow: hidden;
transition: background-color 1s ease;
}
.thumbnail:hover {
background-color: rgba(99,99,99, 0.2)
}
.thumbnail:hover .client-title {
display: block;
}
.client-title {
width: 100%;
text-align: center;
font-size: 5em;
text-shadow: 1px 1px 0 rgb(34, 34, 34), 0 0 0 rgb(34, 34, 34), 1px 1px 8px rgb(34, 34, 34);
display: none;
position: absolute;
top: 50%;
left: 0;
color: rgb(231, 231, 231);
transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
.thumbnail {
max-height: 200px;
}
}
.client-blah1 { background-color: rgba(99,99,99,1) }
关于css - 无法让 CSS 层上升到 "opacitied"层之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31441387/
我问我任务buildDependent是否还会建立第一级依赖项目的依赖项。 其他受抚养者不是过渡依赖于最初的项目吗? 为了更好地理解我的意思:D-> A <-B <-C 项目B和D是A的第一层依赖,而
function hoverimgon(elem){ $(elem).find('.credentials-popup').slideDown(800); }
我有一个数据集,其中每一行代表某些行为的发生次数。这些列代表设定时间量的窗口。它看起来像这样: +----------+----------+----------+----------+-------
这是我在这个网站上要问的第一个问题,如果我的处理方式有误,请务必告诉我。 无论如何,在我创建的对象 (dog) 中,我有一个“实时”函数,它通过使用 javascript 的 setInterval
我的网站上有一个谷歌图表,它是一个折线图。但是我的 Y 轴数据值只会以整数形式增加,所以我不想在 Y 轴上有“4.5”值,如您所见: 如果有人能指出正确的方向,我将不胜感激! 最佳答案 您应该使用以下
我有一个错误,当显示键盘并且切换键盘顶部的预测文本框时, View 会弹出,让用户看到黑屏。发生这种情况的原因是因为我使用了 -= 运算符,每次调用此方法时都会使值复合。该方法可以连续调用多次。我正试
我知道如何通过为父级执行 position:absolute 和为子级执行 position:relative 来将 div 堆叠在 div 之上,但是我如何制作一个 div从另一个分区“升起”?我想
我正在使用最新版本的 ionic 2。我的代码有一个 里面有一个文本输入。当我尝试在 Android 上输入内容时,整个页面都会被键盘向上推。 html文件
我正在使用最新版本的 ionic 2。我的代码有一个 里面有一个文本输入。当我尝试在 Android 上输入内容时,整个页面都会被键盘向上推。 html文件
我正在尝试解析 truetype 字体以构建和存储每个字体大小的上升部分、下降部分,我正在使用 http://nodebox.github.io/opentype.js/这做得非常出色,但我不明白如何
我的布局需要 windowSoftInputMode= adjustmentRezise,以便我的按钮与键盘一起上升。但我不希望我的 BottomNagivationView 受到此影响。我该如何解决
This answer不适用于 WebView,this doesn't任何一个。所以这个问题是专门针对使用 WebView 的。下面的代码加载了一个带有文本输入字段的网页。单击文本输入字段时,会出现
我在将 onOptionsItemSelected 与 Android Studio 的默认“设置 Activity ”(扩展 AppCompatPreferenceActivity)一起使用时遇到问
我是一名优秀的程序员,十分优秀!