- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我们如何向背景图像添加黑色阴影,阴影从不透明度 1 开始逐渐降低到不透明度 0,在图像的所有 4 个边上? (至少 50 像素值的“降低阴影不透明度”。box-shadow 仅提供少量不透明度逐渐下降的阴影。)
我试过使用 mask-image
,例如:-webkit-mask-image: -webkit-gradient(linear, left 85%, left bottom, from( rgba(0,0,0,1)), to(rgba(0,0,0,0)));
这会创建所需的阴影,但仅在图像底部,不确定是否可用于在其他 3 个侧面创建它。
编辑:阴影应该在里面(我相信如果是框阴影则插入)
这样做的目的是让我们用户的封面照片在我们网站的黑色背景上看起来很好,即使他们有更亮的照片。图片内的阴影应该有助于图片与网站的黑色背景融为一体。
最佳答案
是这样的吗?
html,
body {
height: 100%;
}
div {
height: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.inner {
width: 200px;
height: 200px;
background-image: url(http://via.placeholder.com/200x200);
background-size: cover;
background-position: center center;
box-shadow: 0px 0px 40px 5px #000000;
}
<div>
<div class="inner"></div>
</div>
等等,等等....一个声音告诉我页面的背景是深色,深色。阴影应该在元素的内部,从最暗的黑暗开始,然后逐渐进入图像,就像这样...
html,
body {
height: 100%;
background-color: #000000;
}
div {
height: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.inner {
width: 200px;
height: 200px;
background-image: url(http://via.placeholder.com/200x200);
background-size: cover;
background-position: center center;
box-shadow: 0px 0px 40px 20px #000000 inset;
}
<div>
<div class="inner"></div>
</div>
那是什么?哇,等一下……我感觉到 box-shadow
应该 super 、 super 深……像这样:
html,
body {
height: 100%;
background-color: #000000;
}
div {
height: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.inner {
width: 200px;
height: 200px;
background-image: url(http://via.placeholder.com/200x200);
background-size: cover;
background-position: center center;
box-shadow: 0px 0px 70px 50px #000000 inset;
}
<div>
<div class="inner"></div>
</div>
;)
听起来读心术还没有完成。所以这是使用 linear-gradient
的最后一个示例。
html,
body {
height: 100%;
background-color: #000000;
}
div {
height: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.inner {
width: 200px;
height: 200px;
background-image: radial-gradient(circle at center, rgba(0,0,0, 0.1) 0%, #000000 70%, #000000 100%), url(http://via.placeholder.com/200x200);
background-size: cover, cover;
background-position: center center, center center;
}
<div>
<div class="inner"></div>
</div>
关于html - 黑色 50px 阴影从不透明度 1 开始到不透明度 0 结束(逐渐),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46497428/
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 6 年前。 Improve t
notificationCenterPublisher = NotificationCenter.default .publisher(for: .NSManagedObjec
我有以下 Rust 代码: #[inline(never)] fn x() -> i32 { 21 } pub fn main() -> i32 { x() } 如果没有优化 (-C
notificationCenterPublisher = NotificationCenter.default .publisher(for: .NSManagedObjec
我有以下 Rust 代码: #[inline(never)] fn x() -> i32 { 21 } pub fn main() -> i32 { x() } 如果没有优化 (-C
假设我的 ASPX 页面没有内联 C# 代码块。 所以,我可以安全地设置 ...在我的 web.config 文件中,不用担心编译错误。 就性能而言,使用以下设置是否会有任何损失? 即“自动”检测
应用程序.js var win1 = Titanium.UI.createWindow({ title:'Tab 1', backgroundColor: 'black', l
基本上,我正在为实现多级优先级队列的 xv6 内核实现一个调度程序。我有一个严重的问题,我不明白,我类(class)的助教不明白,我已经错过了这个项目的最后期限,所以现在帮助我不会给我任何加分 - 但
我想避免 git 自动 merge 我的 composer.json。这样我就可以在 develop 分支中有一个使用 dev-develop 包的 composer.json,而 master 中的
当比较两种不同的算法实现时(因此,不关心它们的绝对性能,而只关心相对性能)我是否最好强制 Java 只运行解释代码? 也就是说,打开 -Xint 标志会更好吗? 最佳答案 我不认为禁用 JIT 会更好
class A{ const size_t number; public: A(size_t number): number(number) {} void f(){
问题 寻找在以下之间切换的方法: 总是 从不 仅在静默模式下 仅当不处于静默模式时 这些选项在手机上的路径---菜单>>设置>>声音>>振动---找到。 通过手机导航很容易更改(顺便说一句,我的手机是
如何设置电源设置关闭:从不(关闭显示器=从不,让计算机进入休眠状态=从不),通过c#代码 最佳答案 这个问题中给出的链接可以告诉你一个方法。 Programmatically change Windo
我是一名优秀的程序员,十分优秀!