css – 透明文本切出背景

前端之家收集整理的这篇文章主要介绍了css – 透明文本切出背景前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有什么办法使透明文本切出背景效果像下面的图像,用CSS?
这将是悲哀的失去所有珍贵的SEO,因为图像替换文本。

我第一次想到阴影,但我不能算出任何东西…

图像是站点背景,绝对定位的< img>标签

解决方法

这是可能与css3,但它不是所有的浏览器都支持

使用background-clip:text;您可以为文本使用背景,但您必须将其与页面的背景对齐

样式:

body {
  background: url(http://www.crystalxp.net/galerie/img/img-wallpapers-colors-krystof-----15400.jpg) repeat;
  margin:10px;
}
h1 { 
  background-color:#fff; overflow:hidden;
  display:inline-block; 
  padding:10px; 
  font-weight:bold;
  font-family:arial;
  font-size:200px;
}
span { 
  background: url(http://www.crystalxp.net/galerie/img/img-wallpapers-colors-krystof-----15400.jpg) -20px -20px repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display:block;
}

html

<h1><span>ABCDEFGHIKJ</span></h1>​

http://jsfiddle.net/JGPuZ/1/

自动对齐

与一个小的javascript,你可以对齐背景自动

$(document).ready(function(){
  var position = $("h1").position(); //Position of the header in the webpage
  var padding = 10; //Padding set to the header
  var left = position.left + padding;
  var top = position.top + padding;
  $("h1").find("span").css("background-position","-"+left+"px -"+top+"px"); 
});

http://jsfiddle.net/JGPuZ/2/

原文链接:https://www.f2er.com/css/223071.html

猜你在找的CSS相关文章