码迷,mamicode.com
首页 > 其他好文 > 详细

background-clip 实现字体渐变效果

时间:2018-08-30 14:25:55      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:gre   frame   type   渐变   repeat   webkit   checked   字幕   ini   

background-clip 实现字体渐变效果

(一)类似KTV字幕效果

@-webkit-keyframes loop{
     0%{background-position: -800px 0;}
     100%{background-position: -0 0;}
}
.text2{
     width: 800px;
     height: 78px;
     line-height: 78px;
     font-size: 40px;
     font-family: ‘微软雅黑‘;
     font-weight: bold;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-color: red;
     background-image:url(bg.jpg);
     background-repeat:no-repeat;
     background-position: -800px 0;
     -webkit-animation:loop 10s linear infinite;
}

(二)渐变字

 background:linear-gradient(to right, red, green);
 -webkit-background-clip: text;
 color: transparent;

 

ps: 

background-clip的属性值有:
  
  
  
 

 

background-clip 实现字体渐变效果

标签:gre   frame   type   渐变   repeat   webkit   checked   字幕   ini   

原文地址:https://www.cnblogs.com/karila/p/9559736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!