12

我会尝试用图片来解释我的问题。开始了。

1 - 此图像显示了屏蔽图像的文本,到目前为止一切顺利,我可以使用以下代码:

在此处输入图像描述

font-size: 120px;
background: url(image-to-be-masked.jpg) repeat 0 0, white;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

2 - 这另一个图像,文本创建相反的效果,只留下透明的文本区域。这就是我要的:

在此处输入图像描述

有人试过吗?

4

4 回答 4

8

我不认为 CSS 可以做到这一点。但是您可以使用三个不同的嵌套元素将其组合在一起:

  • 最外面的元素包含背景图像
  • 中间元素包含中间图像
  • 内部元素包含文本,并且具有与最外部元素相同的背景图像,background-clip:text;在您的第一个示例中使用 like 掩蔽。

这可行,但有点麻烦,因为您必须补偿蒙版背景位置才能达到所需的效果。这是一个例子:http: //jsfiddle.net/dzkTE/

于 2013-03-19T18:58:00.260 回答
4

我已经设法通过几种不同的方法实现了这一目标。在这里查看我的答案:https ://stackoverflow.com/a/32476482/2315496

见下文:

您在 HTML/CSS/JavaScript 中寻找的内容有 3 种方式,其中一些比其他的更老套。

  1. 用于<canvas>绘制您的形状和类型,并设置您的画布上下文ctx.globalCompositeOperation="xor";在哪里。ctx

var c=document.getElementById('myCanvas');
var ctx=c.getContext('2d');
ctx.font = "bold 36px Proxima Nova";
ctx.fillStyle='blue';
ctx.fillText("MORE",100,87);
ctx.globalCompositeOperation='xor';
ctx.beginPath();
ctx.fillStyle='white';
ctx.arc(150,75,75,0,2*Math.PI);
ctx.fill();
body{
  background: -webkit-radial-gradient(top left,rgb(23, 39, 34) 4%,rgb(56, 99, 99) 37%,rgb(22, 27, 15) 73%,rgb(22, 27, 14) 93%,#232323 100%);
  width:100%;
  height:100%;
}

html{
  height:100%
}
<canvas id='myCanvas'></canvas>

  1. 使用mix-blend-mode: screen并将文本的颜色设置为黑色。

.blend-mode {
  background:white;
  border-radius:100%;
  width:150px;
  height:150px;
  line-height:155px;
  float:left;
  margin:20px;
  font-family: "Proxima Nova", Hevetica, sans-serif;
  font-weight:bold;
  color:black;
  text-align:center;
  vertical-align:middle;
  font-size:36px;
  mix-blend-mode: screen;
}

body{
  background: -webkit-radial-gradient(top left,rgb(23, 39, 34) 4%,rgb(56, 99, 99) 37%,rgb(22, 27, 15) 73%,rgb(22, 27, 14) 93%,#232323 100%);
  width:100%;
  height:100%;
}

html{
  height:100%;
}
<div class="blend-mode">MORE</div>

  1. 使用-webkit-text-fill-color:transparent-webkit-background-clip:text显示其背后的背景副本。这需要对背景副本进行一些对齐以匹配“原始”背景。

.wrap{
  margin:20px;
  float:left;
  position:relative;
}

.background {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: white;
  position:absolute;
  top:0;
  left:0;
  z-index:4;
  
}

.text {
  position:absolute;
  top: 25px;
  left: 25px;
  z-index:5;
  background: -webkit-radial-gradient(top left, rgb(23, 39, 34) 4%, rgb(56, 99, 99) 37%, rgb(22, 27, 15) 73%, rgb(22, 27, 14) 93%, #232323 100%);
  font-family: Proxima Nova, Helvetica, sans-serif;
  font-weight:bold;
  line-height:100px;
  font-size: 36px;
  color: #666;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body{
  background: -webkit-radial-gradient(top left,rgb(23, 39, 34) 4%,rgb(56, 99, 99) 37%,rgb(22, 27, 15) 73%,rgb(22, 27, 14) 93%,#232323 100%);
  width:100%;
  height:100%;
}

html{
  height:100%;
}
<div class="wrap">
  <div class="background"></div>
  <div class="text">MORE</div>
</div>

这些都不太可能在跨浏览器上运行得很好,而且我还没有测试过它们!

于 2015-09-09T10:03:50.367 回答
3

* { margin: 0; padding: 0 }

header {
    overflow: hidden;
    height: 100vh;
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_04_art_bw_butterfly_bg.jpg) 50%/ cover
}

h2 {
    color: white;
    mix-blend-mode: difference;
    font: 900 35vmin/35vh cookie, cursive;
    text-align: center
}
<header>
    <h2 contentEditable role='textbox' aria-multiline='true'>And stay alive...</h2>
</header>

于 2019-05-24T05:26:51.527 回答
-1

[对不起,我看错了。我尝试相反,认为:P]我认为你可以通过使用背景剪辑来做到这一点。

background-clip:text;

在这里检查(请尝试使用 chrome 或添加供应商前缀)。您可以查看演示页面表单 chris。

于 2013-03-19T18:32:34.633 回答