彩色渐变字体

这种css控制的样式(仅支持webkit内核浏览器)

background-image: linear-gradient(0deg, rgba(2, 210, 2, 0.5), rgba(255, 2, 2, 0.5));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

利用画布 canvas

<canvas id="myCanvas" width="200" height="30">浏览器不支持canvas标签</canvas>
<script>
    // 获取元素-创建画布
    var c = document.getElementById("myCanvas");
    var ctx = c.getContext("2d");
    // 创建渐变
    var grd = ctx.createLinearGradient(0, 0, 200, 0); // 渐变的方向
    grd.addColorStop(0, "rgba(2, 210, 2, 0.5)"); // 颜色1
    grd.addColorStop(1, "rgba(255, 2, 2, 0.5)"); // 颜色2

    ctx.fillStyle = grd; // 渐变颜色填充
    ctx.font = "30px Arial" // 字体设置
    ctx.fillText("彩色字体", 0, 30); // 注意起始位置和文字高度
</script>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值