HTMLで行列を使用してJSラジアルグラデーションを作成する
行列付きのJSRadialグラデーションは、次の方法で作成されます。次の方法で実行して、行列-
を使用してJSラジアルグラデーションを作成できます。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でファイルアップロードボタンを作成するにはどうすればよいですか?
HTMLでファイルアップロードボタンを作成する方法については、コードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <h1>File upload button example</h1> <p>Click on the "Choose File" button to upload a file:</p> <form> <input type="file" id="FILE" name="f
-
HTMLでダウンロードリンクを作成するにはどうすればよいですか?
HTMLでダウンロードリンクを作成するには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <body> <h1>Download Link example</h1> <a href="https://i.picsum.photos/id/225/800/800.jpg" download> <img src="https://i.picsum.photos/id/225/800/800.jpg" style="width: 300px;h