在HTML中使用矩阵创建JS径向渐变
JSRadial 矩阵渐变是通过以下方式创建的。您可以尝试运行以下方法来使用矩阵创建 JS Radial 渐变 –
var canvas1 = document.getElementById(canvas); //canvas1 variable to identify given canvas var ctx1 = canvas.getContext(2d); //This is used to tell context is 2D var gradient1 = ctx1.createRadialGradient(100/horizontalScale, 100/verticalScale, 100, 100/horizontalScale,100/verticalScale,0); //This will create gradient with given canvas context gradient1.addColorStop(1,green); //New color green is added to gradient gradient1.addColorStop(0,red); //New color red is added to gradient ctx1.scale(horizontalScale, verticalScale); //Context matrix ctx1 is shrinked according to horizaontal and vertical scale ctx1.fillStyle = gradient; //Given gradient is drawn ctx1.fillRect(0,0, 100/horizontalScale, 100/verticalScale); //Rectangle is stretched according to scale ctx1.setTransform(0,1,1,0,1,1); //Context matrix is reset canvas { background-color: purple; } //Canvas is drawn with background color purple <canvas id = canvas width = 300 height = 300></canvas>
以上就是在HTML中使用矩阵创建JS径向渐变的详细内容,更多请关注双恒网络其它相关文章!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。