我想制作一个类似于附件的主页图像(由于我没有足够的点数/声誉,stackoverflow不会让我作为图像共享,而是一个链接)。即使我做了很多研究,我也找不到任何答案,也没有想办法实现这一目标。基本上,我想将文字字母与图像集成在一起。我想用HTML编写文本。有什么办法可以帮助我吗?
非常感谢。 最好, 内森。
答案 0 :(得分:0)
我想你的答案在这里
<div class="dark">
<h1>Chicago</h1>
<img src="yourimage" alt="Photograph of the Chicago skyline taken from the water during the day">
</div>
<div class="light">
<h1>Houston</h1>
<img src="yourimage" alt="Photograph of the Houston skyline taken from a tree-lined park">
</div>
@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
body {
margin: 0;
}
div {
text-align: center;
position: relative;
}
div h1 {
margin: 0;
font-size: 20vw;
text-transform: uppercase;
font-family: Montserrat, sans-serif;
line-height: 1.9;
}
.dark h1 {
color: #fff;
}
.light h1 {
color: #000;
font-size: 19vw;
}
div img {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.dark {
background: #000;
}
.light {
background: #fff;
}
.dark img {
mix-blend-mode: darken;
}
.light img {
mix-blend-mode: lighten;
}
答案 1 :(得分:0)
我的观点有些古板: 您并不是严格意义上在文本上方或后面放置文本,而是在图像中分层文本。