我们分析一下实现这个效果需要实现的功能:
实现一个扫光背景块,因为光是移动的,所以要加入渐变效果 (例如: 手电筒照射的一小块区域)
将扫光背景块控制到文本上 (即实现文本背景)
实现扫光动画 (扫光块从左往右循环移动)
思路理清了,接下来就是一步一步实现了
背景渐变 -webkit-linear-gradient (形成扫光背景块)
background: #111 -webkit-linear-gradient(left, #111, #fff) 0 0 no-repeat
background-size: 80px
默认背景为黑色,从左往右产生黑白渐变效果,背景位于左上角,不重复,背景大小80x80 (扫光背景块)
背景范围 -webkit-background-clip (实现文本背景)
为了实现文字扫光,我们必须把上一步形成的扫光背景块,控制在文字上面
background-clip 有三个属性: border-box, padding-box, content-box (具体效果不细说了)
显然这些属性并不能满足我们的这个需求,并没有可以控制文字背景的属性
但是在 webkit 下 background-clip 就有这样一个属性,那就是 background-clip: text 通常会配合其私有属性 -webkit-text-fill-color (填充文本颜色) 一起使用
背景动画 (扫光动画)
@-webkit-keyframes slideShine {
0% {
background-position: 0 0
}
100% {
background-position: 100% 100%
}
}
通过调整背景的位置(从左往右),来达到扫动的效果
效果实例
CSS Code
.bg {
background: #000
width: 1000px
height: 300px
margin: 0 auto
padding-top: 100px
}
.slideShine {
width: 1000px
font-family: "Microsoft YaHei"
font-size: 60px
text-align: center
background: #111 -webkit-linear-gradient(left, #111, #fff) 0 0 no-repeat
-webkit-background-size: 80px
-webkit-background-clip: text
-webkit-text-fill-color: rgba(255, 255, 255, 0.3)
-webkit-animation: slideShine 3s infinite
}
@-webkit-keyframes slideShine {
0% {
background-position: 0 0
}
100% {
background-position: 100% 100%
}
}
HTML Code
<div class="bg">
<p class="slideShine">Welcome to xinpureZhu Blog</p>
</div>
效果示图
css文件渐变虽然兼容性比较差,但是用在移动端和chrome中还是没有问题的。
实现文件渐变的方法有两种
效果如下
-webkit-background-clip W3C支持的属性说明
但是并没有text 属性,所以这个只能在chrome上看到效果,在其他浏览器没有实现,它的兼容性就有很大的问题了
-webkit-background-clip: text 用文本剪辑背景,用渐变背景作为颜色填充文本。
缺点:webkit 内核浏览器特有
效果如下
使用:mask-image
缺点:webkit 内核浏览器特有
采用 svg 方式
实现原理:程序首先算出字体所在容器的高度N,然后清空容器内容,并添加N个span,每个span内容都为原容器的文字,每个span的颜色根据渐变色进行计算,而且其中的文字定位都相比之前一个span的文字向上偏移一个像素。CSS中可以看到,每个span的高度都为1。这样,我们就通过N各不同颜色的1px的span把字体“拼”出来了,然后加上“高光/阴影”就搞定。
新建一个HTML文件粘过去:<p onclick="rotateDIV()" id="rotate1" class="animated_div" style="transform: rotate(360deg)">2D 旋转</p>
<p onclick="rotateYDIV()" id="rotatey1" class="animated_div" style="transform: rotateY(180deg)">3D 旋转</p>
<style>
p {
margin: 12px 0 0 0
line-height: 150%
}
#rotate1, #rotatey1 {
border: 1px solid #000000
background: red
margin: 10px
opacity: 0.7
}
.animated_div {
width: 60px
height: 40px
color: #ffffff
position: relative
font-weight: bold
padding: 20px 10px 0px 10px
float: left
margin: 20px
margin-right: 50px
border: 1px solid #888888
-webkit-border-radius: 5px
-moz-border-radius: 5px
border-radius: 5px
font: 12px Verdana, Arial, Helvetica, sans-serif
line-height: normal
text-align: center
vertical-align: middle
}
#rotate1,#rotatey1 { border:1px solid #000000 background:red margin:10px opacity:0.7 }
</style>
<script><!--var x,y,n=0,ny=0,rotINT,rotYINTfunction rotateDIV(){x=document.getElementById("rotate1")clearInterval(rotINT)rotINT=setInterval("startRotate()",10)}function rotateYDIV(){y=document.getElementById("rotatey1")clearInterval(rotYINT)rotYINT=setInterval("startYRotate()",10)}function startRotate(){n=n+1x.style.transform="rotate(" + n + "deg)"x.style.webkitTransform="rotate(" + n + "deg)"x.style.OTransform="rotate(" + n + "deg)"x.style.MozTransform="rotate(" + n + "deg)"if (n==180 || n==360) { clearInterval(rotINT) if (n==360){n=0} }}function startYRotate(){ny=ny+1y.style.transform="rotateY(" + ny + "deg)"y.style.webkitTransform="rotateY(" + ny + "deg)"y.style.OTransform="rotateY(" + ny + "deg)"y.style.MozTransform="rotateY(" + ny + "deg)"if (ny==180 || ny>=360) { clearInterval(rotYINT) if (ny>=360){ny=0} }}//--></script>