- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
大家好,我想要不更改 div 结构的框阴影 我试图在内容列中设置框阴影,但我设置溢出隐藏在优势框 div 中,因为我还想在主潜水悬停时悬停背景图像 div 比例删除溢出隐藏的 CSS 比背景图像潜水显示在主 div 之外所以我设置溢出隐藏。当您删除隐藏的溢出而不是显示阴影时,这可能是阴影,但我的背景图像缩放效果显示不好。这类问题的解决方案是什么
.features-box {
padding: 100px 0;
background-color: rgba(56,74,100,.1);
}
.content {
padding: 30px;
background-color: #fff;
position: relative;
}
.content:after {
content: '';
position: absolute;
width: 100%;
bottom: 0;
height: 2px;
left: 0;
-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.06);
-ms-box-shadow: 0 2px 2px 0 rgba(0,0,0,.06);
box-shadow: 0 2px 2px 0 rgba(0,0,0,.06);
z-index: 9;
}
.advantages-box {
overflow: hidden;
}
.advantages-box .left {
-webkit-transition: .3s;
-moz-transition: .3s;
-ms-transition: .3s;
transition: .3s;
}
.advantages-box:hover .left {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<section class="features-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-10 advantages-box">
<div class="row h-100">
<div class="col-6 h-100 p-0 position-relative left" style="background-image: url(http://placekitten.com/1000/500); background-repeat: no-repeat; background-position: center center;">
</div>
<div class="col-6 h-100 p-0 position-relative right">
<div class="content d-flex flex-column align-items-start text-left h-100">
<h5>What is Lorem Ipsum one?</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
<h5>What is Lorem Ipsum two?</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
最佳答案
使图像成为一个额外的元素,你只需要在它的父元素上应用溢出:
.features-box {
padding: 100px 0;
background-color: rgba(56, 74, 100, .1);
}
.content {
padding: 30px;
background-color: #fff;
position: relative;
}
.content:after {
content: '';
position: absolute;
width: 100%;
bottom: 0;
height: 2px;
left: 0;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .6);
z-index: 9;
}
.advantages-box .left {
overflow: hidden;
}
.advantages-box .left img {
height: 100%;
width: 100%;
object-fit: none;
transition: .3s;
}
.advantages-box:hover .left img {
transform: scale(1.1);
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<section class="features-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-10 advantages-box">
<div class="row h-100">
<div class="col-6 h-100 p-0 position-relative left">
<img src="http://placekitten.com/1000/500">
</div>
<div class="col-6 h-100 p-0 position-relative right">
<div class="content d-flex flex-column align-items-start text-left h-100">
<h5>What is Lorem Ipsum one?</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
<h5>What is Lorem Ipsum two?</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
如果要保留背景图片:
.features-box {
padding: 100px 0;
background-color: rgba(56, 74, 100, .1);
}
.content {
padding: 30px;
background-color: #fff;
position: relative;
}
.content:after {
content: '';
position: absolute;
width: 100%;
bottom: 0;
height: 2px;
left: 0;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .6);
z-index: 9;
}
.advantages-box .left {
overflow: hidden;
}
.advantages-box .left div {
height:100%;
background-position:center;
background-repeat:no-repeat;
transition: .3s;
}
.advantages-box:hover .left div {
transform: scale(1.1);
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<section class="features-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-10 advantages-box">
<div class="row h-100">
<div class="col-6 h-100 p-0 position-relative left">
<div style="background-image:url(http://placekitten.com/1000/500)"></div>
</div>
<div class="col-6 h-100 p-0 position-relative right">
<div class="content d-flex flex-column align-items-start text-left h-100">
<h5>What is Lorem Ipsum one?</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
<h5>What is Lorem Ipsum two?</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
另一种不改变HTML的想法是后台依赖伪元素和继承:
.features-box {
padding: 100px 0;
background-color: rgba(56, 74, 100, .1);
}
.content {
padding: 30px;
background-color: #fff;
position: relative;
}
.content:after {
content: '';
position: absolute;
width: 100%;
bottom: 0;
height: 2px;
left: 0;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .6);
z-index: 9;
}
.advantages-box .left {
overflow: hidden;
position:relative;
z-index:0;
}
.advantages-box .left:before {
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:inherit;
transition: .3s;
}
.advantages-box:hover .left:before {
transform: scale(1.1);
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<section class="features-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-10 advantages-box">
<div class="row h-100">
<div class="col-6 h-100 p-0 position-relative left" style="background-image: url(http://placekitten.com/1000/500); background-repeat: no-repeat; background-position: center center;">
</div>
<div class="col-6 h-100 p-0 position-relative right">
<div class="content d-flex flex-column align-items-start text-left h-100">
<h5>What is Lorem Ipsum one?</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
<h5>What is Lorem Ipsum two?</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
关于html - 父div溢出隐藏时如何设置框阴影底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56019525/
如何在 XNA 中用图元(线条)制作的矩形周围制作阴影效果?我目前正在制作我的矩形,方法是将图元放入我制作的批处理中,然后添加纹理作为它们的背景。这些矩形应该象征着“ window ”。 我希望它们也
我刚刚在引擎中安装了照明系统。在以下屏幕截图中,您可以看到一个亮起的指示灯(黄色方框): 考虑到在照亮场景的光线之上,它还实现了FOV,该FOV将遮挡视场之外的任何物体。这就是为什么阴影的左侧部分看起
我是不熟悉Gradle并尝试编译我的项目的新手,但是也“阴影化”(就像在maven中一样)本地jar文件。 我正在尝试使用gradle shadow插件,但是当我运行“shadowJar”时,它并没有
用 JavaScript 编写解析器,对于任何语言,显然都使用 Map 来存储名称到变量的映射。 大多数语言允许以某种方式或内部作用域中的另一个变量遮蔽外部作用域中的变量。实现这一点的理想数据结构是功
// Shadowing #include using namespace std; const int MNAME = 30; const int M = 13; class Pers
我想设置我的导航栏和状态栏,就像下面链接中图片中的示例一样。我怎么能这样做 see the example 最佳答案 您可以通过像这样设置样式属性来简单地做到这一点: se
我以为我理解阴影的概念。但是这段代码让我想知道: public class Counter { int count = 0; public void inc() { count++; } pu
尝试遵循概述的方法 here为我的 UINavigationController 添加阴影。但是,该方法似乎不起作用。 这是我使用的代码: - (void)viewDidLoad { [sup
如何给 UITableViewCell 上下两边添加阴影? 我试过这个: cell.layer.shadowOpacity = 0.75f; cell.layer.shadowRadius = 5.0
我有一个博客,我为它制作了自定义光标,但它们并不是我想要的样子。使用一些免费的光标编辑程序制作光标,它们看起来只有一种颜色,没有边框、黑色或阴影。即使以图片形式上传后,在线.png 文件看起来也没有阴
我能得到像这张附图那样的带阴影的饼图吗? 如果是,怎么办? 这是饼图的代码: 最佳答案 遗憾的是,Kendo UI 饼图不支持任何 3D 元素。您可以在 Telerik 论坛中阅读相关信息 he
我一直试图获得给定的 curl 阴影效果 here对于 box-shadow:inset 但没有得到任何东西。任何onw有任何线索我可以让它工作吗? 一直试图让它在这个 上工作jsfiddle 将其更
我正在构建一个类似商店的东西,所以我有产品,侧面有圆形按钮,当我点击它们时,它会改变产品的颜色。一切都很完美,但我希望当我单击按钮时,按钮保持高亮状态。代码: CSS: #but1 { posi
我想创建一个底部边框下方有框显示的 H2 这是我的“基本”代码: My H2 #toto{ box-shadow: 0 4px 2px -2px gray; } 但我想
我有一个包含卡片列表的模板: --> {{event.eventTitle}} {{event.eve
CSS 阴影有问题。我不知道如何摆脱这里的顶部阴影:http://i.imgur.com/5FX62Fx.png 我得到的: box-shadow: 0 -3px 4px -6px #777, 0 3
在我的应用程序中,我想保留状态栏但使其背景与主屏幕相同。 所以我创建了一个自定义主题来设置应用程序背景: @drawable/background_shelf true
滚动 ListView 时如何去除阴影。 我在列表的顶部和底部出现了阴影。 最佳答案 关于android ListView 阴影,我们在Stack Overflow上找到一个类似的问题: https
我想在我的 Swift 4 中使用 MaterialComponents 为我的 View 添加阴影,但我不明白如何使用阴影电梯。我创建了一个名为 ShadowedView 的类,类似于 docume
给定以下 CAShapeLayer 是否可以在提示处添加如下图所示的阴影? 我正在使用 UIBezierPath 来绘制条形图。 - (CAShapeLayer *)gaugeCircleLayer
我是一名优秀的程序员,十分优秀!