gpt4 book ai didi

css - 如何在 React 中使动态背景图像不透明?

转载 作者:太空宇宙 更新时间:2023-11-04 07:24:37 24 4
gpt4 key购买 nike

我的博客文章每篇都有一张封面图片。我想在我的帖子列表页面中使用这些图片作为实验,看看它是否会使页面稍微活跃一点。

图像太亮。我要么希望降低不透明度,要么必须添加覆盖层。

改变不透明度会改变文本的不透明度。添加叠加层已将其自身定位在 anchor 之上,使它们变得无用。

如果您有兴趣,我正在使用 Gatsby Casper 入门套件。

PostListing.jsx

...
<PostFormatting className={className} key={title} cover={cover}>
<PostHeader>
<h2 className="post-title">
<Link to={path}>{title}</Link>
</h2>
...

PostFormatting.jsx

...
const style = cover ? { backgroundImage: `url(${cover})` } : {};
return <article className={className} style={style}>{children}</article>;
...

Blog post image that is difficult to read

生成的 HTML

<article class="post" style="background-image: url(&quot;https://picsum.photos/1280/500/?image=800&quot;);">
<header class="post-header">
<h2 class="post-title">
<a href="/blog/rewire-your-brain-7">Test Post</a>
</h2>
</header>
<section class="post-meta">
<span>
<span class="tag"><a href="/tags/mindset">Mindset</a></span>
<span class="tag"><a href="/tags/productivity">Productivity</a></span>
</span>
<time class="post-date" datetime="2017-06-27">27 June 2017</time>
</section>
<section class="post-excerpt"><p>...</p></section>
</article>

CSS

post 元素的所有样式。

<element.style> {
background-image: url(https://picsum.photos/1280/500/?image=800);
}

.home-template .content .post,
.tag-template .content .post {
background-color: rgba(0, 0, 0, .1);
padding: 30px 50px 50px 50px;
}

.post {
position: relative;
width: 80%;
max-width: 710px;
margin: 4rem auto 0em auto;
padding-bottom: 4rem;
border-bottom: #1a232c 3px solid;
word-wrap: break-word;
}

我知道 this method但我不知道如何将图像放入 after 伪元素中。

div {
width: 200px;
height: 200px;
display: block;
position: relative;
}

div::after {
content: "";
background: url(image.jpg);
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}

注意:试试Radium对于伪类

最佳答案

你必须将叠加层作为内容的兄弟,并使其成为绝对的。你还必须增加内容的 z-index,以便它可以交互。

在您的情况下,文章中的所有元素都应分组并放入内容类中。

试试这个

.parent{
height:300px;
padding:50px;
position:relative;
}
.overlay{
position:absolute;
top:0;right:0;left:0;bottom:0;
background-color:rgba(0,0,0,0.5);
z-index:0;
}
.content{
position:relative;
z-index:1;
font-size:25px;
color:white;
}
<div class="parent" style="background-image:url(http://via.placeholder.com/350x150)">
<div class="overlay"></div>
<div class="content">Test Test</div>
</div>

关于css - 如何在 React 中使动态背景图像不透明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50013791/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com