最近中文字幕高清中文字幕无,亚洲欧美高清一区二区三区,一本色道无码道dvd在线观看 ,一个人看的www免费高清中文字幕

代碼
提交代碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>慕課網(wǎng)Wiki</title> <style> #imooc{ border:1px solid #ccc; } </style> </head> <body> <canvas id="imooc">您的瀏覽器不支持 HTML5 canvas 標(biāo)簽</canvas> <script> const canvas = document.getElementById('imooc'); const ctx = canvas.getContext('2d'); ctx.rect(10,10, 200,100) let lg = ctx.createLinearGradient(0,0, 200,0) // 1. 創(chuàng)建線性漸變線 lg.addColorStop(0, "#f00") // 2. 設(shè)定關(guān)鍵點 lg.addColorStop(0.5, "#fff") // 2. 設(shè)定關(guān)鍵點 lg.addColorStop(1, "#000") // 2. 設(shè)定關(guān)鍵點 ctx.strokeStyle = lg; // 3. 填充線性漸變 ctx.stroke(); </script> </body>
運(yùn)行結(jié)果