[Javascript] Gradient Fills on the HTML5 Canvas

本文通过几个具体的示例展示了如何使用HTML5 Canvas API创建线性和径向渐变,并将其应用于矩形和圆形的填充效果中。通过对不同颜色停止点的设置,实现了从一种颜色平滑过渡到另一种颜色的效果。
window.onload = function() {

    var canvas = document.getElementById("canvas"),
        context = canvas.getContext("2d");

    var gradient =context.createLinearGradient(100,100,100,200);
    gradient.addColorStop(1,"blue");   // show blue at the bottom
    gradient.addColorStop(0,"yellow"); // show yellow on the top
    
    context.fillStyle=gradient;
    context.fillRect(100,100,100,100);
};

 

window.onload = function() {

    var canvas = document.getElementById("canvas"),
        context = canvas.getContext("2d");

    var gradient =context.createLinearGradient(100,100,100,200);
    gradient.addColorStop(1,"blue");   // show blue at the bottom
    gradient.addColorStop(0.75, "pink"); //close to the bottom
    gradient.addColorStop(0,"yellow"); // show yellow on the top

    context.fillStyle=gradient;
    context.fillRect(100,100,100,100);
};

 

window.onload = function() {

    var canvas = document.getElementById("canvas"),
        context = canvas.getContext("2d");

    var gradient =context.createLinearGradient(100,100,200,100);
    gradient.addColorStop(1,"blue");   // show blue at the bottom
    gradient.addColorStop(0.75, "pink"); //close to the bottom
    gradient.addColorStop(0,"yellow"); // show yellow on the top

    context.fillStyle=gradient;
    context.fillRect(100,100,100,100);
};

 

----------------------------

window.onload = function() {

    var canvas = document.getElementById("canvas"),
        context = canvas.getContext("2d");

    var gradient = context.createRadialGradient(100,100,0,100,100,50);
    gradient.addColorStop(0, "white");
    gradient.addColorStop(1, "black");

    context.fillStyle = gradient;
    context.beginPath();
    context.arc(100,100,50,0,Math.PI * 2);
    context.closePath();
    context.fill();

};

 

var gradient = context.createRadialGradient(100,100,20,100,100,50);

 

var gradient = context.createRadialGradient(100,100,20,100,100,80);

 

var gradient = context.createRadialGradient(100,100,20,100,100,30);

 

var gradient = context.createRadialGradient(120,80,0,110,90,60);

转载于:https://www.cnblogs.com/Answer1215/p/4352620.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值