<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
.masked{
background:url(http://www.zhangxinxu.com/study/image/paint.png);
-webkit-text-fill-color:transparent;
-webkit-background-clip:text;
-webkit-animation-name:masked-animation;
-webkit-animation-duration:40s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:linear;
color:#fff;
}
@-webkit-keyframes masked-animation {
0% {background-position:left bottom;}
100% {background-position:right bottom;}
}
</style>
</head>
<body>
<div class="masked">
<h1>这是一段标题文字</h1>
</div>
</body>
</html>
复制代码查看效果,效果图如下:
总结:
适应场合:个人觉得,此效果适合用在logo、标题文字等上面,效果还是蛮不错的。
效果描述:这里面是个动画效果(animation),颜色一直(infinite)均匀(linear)渐变。
原理:其实很简单,给文字的背景图片加上左右一直不断的偏移动画,而背景图片是个水平方向渐变的图形