htmlcssjavascript用canvas实现动画渐变

1、效果图-白色光线从左上角移动到右下角

2、代码-废话不多说上代码

<!DOCTYPE html>
<html>
    <head>

        <meta charset = "utf-8"/>

        <title>canvas</title>


    </head>

    <style>
 body{

margin: auto;

display: flex;

justify-content: center;

align-items: center;

 }


 #c1{

   
  




 }



    </style>

<body>

    <canvas id = "c1">

       

    </canvas>

    <script>

        var c1 = document.getElementById("c1");


c1.width = document.documentElement.clientWidth ;
c1.height = document.documentElement.clientHeight ;


        var ctx = c1.getContext("2d");

     let index = 0;

     function render(){


        ctx.clearRect(0,0,c1.width,c1.height);

        index+=0.0050;

        if(index > 1){

index = 0;


        }

let linearGradient = ctx.createLinearGradient(0,0,c1.width,c1.height);

linearGradient.addColorStop(0,"blue");

linearGradient.addColorStop(index,"white");

linearGradient.addColorStop(1,"red");

ctx.fillStyle = linearGradient;

ctx.fillRect(0,0,c1.width,c1.height);

requestAnimationFrame(render);



     }


     requestAnimationFrame(render);

    </script>

</body>

</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值