整合营销服务商

电脑端+手机端+微信端=数据同步管理

免费咨询热线:

css文字颜色渐变的3种实现

者:IT智云编程

链接:https://www.jianshu.com/p/4fa116fc4653

在web前端开发过程中,UI设计师经常会设计一些带渐变文字的设计图,在以前我们只能用png的图片来代替文字,今天可以实现使用纯CSS实现渐变文字了。下面就介绍3中实现方式供大家参考!

基础样式:

.gradient-text{text-align: left;text-indent:30px;line-height: 50px;font-size:40px;font-weight:bolder; position: relative; }

第一种方法,使用 background-cli、 text-fill-color:

.gradient-text-one{ 
 background-image:-webkit-linear-gradient(bottom,red,#fd8403,yellow); 
 -webkit-background-clip:text; 
 -webkit-text-fill-color:transparent; 
}

说明 :

background: -webkit-linear-gradient(...) 为文本元素提供渐变背景。

webkit-text-fill-color: transparent 使用透明颜色填充文本。

webkit-background-clip: text 用文本剪辑背景,用渐变背景作为颜色填充文本。

第二种方法,使用 mask-image:

.gradient-text-two{
 color:red;
}
.gradient-text-two[data-content]::after{
 content:attr(data-content);
 display: block;
 position:absolute;
 color:yellow;
 left:0;
 top:0;
 z-index:2;
 -webkit-mask-image:-webkit-gradient(linear, 0 0, 0 bottom, from(yellow), to(rgba(0, 0, 255, 0)));
}

说明:

mask-image 和 background-image 一样,不仅可以取值是 图片路径,也可以是渐变色。

第三种方法,使用 linearGradient、fill:

.gradient-text-three{
 fill:url(#SVGID_1_);
 font-size:40px;
 font-weight:bolder;
}
<svg viewBoxs="0 0 500 300" class="svgBox">
 <defs>
 <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0" y1="10" x2="0" y2="50">
 <stop offset="0" style="stop-color:yellow"/>
 <stop offset="0.5" style="stop-color:#fd8403"/>
 <stop offset="1" style="stop-color:red"/>
 </linearGradient>
 </defs>
 <text text-anchor="middle" class="gradient-text-three" x="110px" y="30%">花信年华</text>
</svg>

说明:

在SVG中,有两种主要的渐变类型:

线性渐变(linearGradient)

放射性渐变(radialGradient)

SVG中的渐变不仅可以用于填充图形元素,还可以填充文本元素

dom示例:

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
 <title>CSS3渐变字体</title>
 <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
 <script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
 <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
 <style type="text/css">
 *{margin:0;padding:0;}
 body,html{width:100%;height:100%;}
 .wrapper{width:80%;margin:0 auto;margin-top:30px;}
 .gradient-text{text-align: left;text-indent:30px;line-height: 50px;font-size:40px;font-weight:bolder; position: relative; }
 .gradient-text-one{ 
 background-image:-webkit-linear-gradient(bottom,red,#fd8403,yellow); 
 -webkit-background-clip:text; 
 -webkit-text-fill-color:transparent; 
 }
 .gradient-text-two{
 color:red;
 }
 .gradient-text-two[data-content]::after{
 content:attr(data-content);
 display: block;
 position:absolute;
 color:yellow;
 left:0;
 top:0;
 z-index:2;
 -webkit-mask-image:-webkit-gradient(linear, 0 0, 0 bottom, from(yellow), to(rgba(0, 0, 255, 0)));
 }
 .gradient-text-three{
 fill:url(#SVGID_1_);
 font-size:40px;
 font-weight:bolder;
 }
 </style>
</head>
<body>
 <section class="wrapper">
 <div class="panel panel-info">
 <div class="panel-heading">
 <h3 class="panel-title">方法1. background-clip + text-fill-color</h3>
 </div>
 <div class="panel-body">
 <h3 class="gradient-text gradient-text-one">花样年华</h3>
 </div>
 </div>
 <div class="panel panel-warning">
 <div class="panel-heading">
 <h3 class="panel-title">方法2. mask-image</h3>
 </div>
 <div class="panel-body">
 <h3 class="gradient-text gradient-text-two" data-content="豆蔻年华">豆蔻年华</h3>
 </div>
 </div>
 <div class="panel panel-danger">
 
 <div class="panel-heading">
 <h3 class="panel-title">方法3. svg linearGradient</h3>
 </div>
 
 <div class="panel-body">
 <svg viewBoxs="0 0 500 300" class="svgBox">
 <defs>
 <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0" y1="10" x2="0" y2="50">
 <stop offset="0" style="stop-color:yellow"/>
 <stop offset="0.5" style="stop-color:#fd8403"/>
 <stop offset="1" style="stop-color:red"/>
 </linearGradient>
 </defs>
 <text text-anchor="middle" class="gradient-text-three" x="110px" y="30%">花信年华</text>
 </svg>
 </div>
 
 </div>
 </section>
</body>
</html>

效果:

这里推荐一下我的前端技术分享群:731771211,里面都是学习前端的,如果你想制作酷炫的网页,想学习编程。自己整理了一份2018最全面前端学习资料,从最基础的HTML+CSS+JS【炫酷特效,游戏,插件封装,设计模式】到移动端HTML5的项目实战的学习资料都有整理,送给每一位前端小伙伴,有想学习web前端的,或是转行,或是大学生,还有工作中想提升自己能力的,正在学习的小伙伴欢迎加入学习。

页中添加滚动字幕效果

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>滚动字体的设置</title>

</head>

<body>

<canvas id="canvas1" width="600" height="600" style="border:1px solid #000000"></canvas>

<script type="text/javascript">

var canvas1 = document.querySelector("#canvas1") // 1.找到画布对象

var ctx = canvas1.getContext("2d") // 2.上下文对象(画笔)


ctx.shadowBlur = 10; // 阴影距离

ctx.shadowColor = "red" // 阴影颜色

ctx.shadowOffsetX = 30 // 阴影偏移

ctx.shadowOffsetY = 30 // 阴影偏移


ctx.font = "150px 楷体"


ctx.fillText("你好!", 20,150)


ctx.fillText("你好!", 20,350)


ctx.strokeText('你好!',23, 153)


ctx.strokeText('你好',23, 553)


canvas绘制文字



var x = 600

setInterval(function(){

if(x > -350){

//清空画布

ctx.clearRect(0,0,600,600)

ctx.strokeText('你好!',x, 153)

ctx.fillText("你好!", x,350)


ctx.font = "50px 宋体"

ctx.strokeText('每天学习一点点',x, 553)


x -= 3

}else{x=590}



}, 16)


</script>


</body>

</html>

求场景

前端有时候需要展示日志,用textarea,也可以用div。 用div设置可编辑属性确实可以做到,但是这表现的并不完全像textarea,总之,不想用div替代。如果用 textarea,需要根据里面的文本内容不同,去展示不同的颜色!不过浏览器兼容性没那么好。

如果是控制textarea的style,则所有文本都是一个颜色;如果把文本放到标签里面,也不会起作用,因为标签在文本域组件里面不会去解释,直接当做文本处理了。

解决方案

如果这个需要在同一个文本域里面显示不同颜色的的字体,比如warn 告警是黄色,error错误显示为红色。

大概思路有两种 ,有一种类似谷歌翻译那种,在上面再覆盖一层DIV

现在我要介绍的是一种较为简单的土方法。

先是引入高亮的脚本

<script src="dist/jquery/jquery.min.js"></script>
<script src="dist/jquery-ui/jquery-ui.min.js"></script>
<script src="dist/jquery-highlighttextarea/jquery.highlighttextarea.js"></script>

引入样式

<link rel="stylesheet" href="dist/jquery-ui/theme/jquery-ui.min.css">
<link rel="stylesheet" href="dist/jquery-highlighttextarea/jquery.highlighttextarea.min.css">


只需highlightTextarea在jQuery对象上调用。

$(/* selector */).highlightTextarea({
  /* options */
});

例如:

<textarea cols="50" rows="5">...</textarea>

<script>
  $('textarea').highlightTextarea({
    words: ['Lorem ipsum', 'vulputate']
  });
</script>

还有一条

<!DOCTYPE html>

<html>

<head>

<title></title>

</head>

<body>

<div>

<style type="text/css">

.in, .out {

padding: 0;

margin: 0;

position: absolute;

border: 1px solid #ccc;

width: 350px;

height: 100px;

left: 10px;

top: 10px;

font-size: 14px;

z-index: 3;

}

.in {

outline: none;

z-index: 2;

color: black !important;

text-shadow: 0px 0px 0px #fff;

-webkit-text-fill-color: transparent;

}

.out {

background-color: transparent;:

}

</style>

<textarea class="in" id='inaa' oninput='inputFunc()' style="width: 350px; height: 100px;"></textarea>

<div id='put' class="out" onclick='inaa.focus()'>

</div>

<script type="text/javascript">

function inputFunc (value) {

// console.log(value)

console.log(inaa.value)

let spans = document.createElement('span')

spans.innerHTML = '哈哈'

spans.style.color = 'red'

put.innerHTML = inaa.value.replace(/哈哈/g, '<span style="color: red;">哈哈</span>')

}

</script>

</div>

</body>

</html>