কম্পিউটার

HTML এ ম্যাট্রিক্স সহ জেএস রেডিয়াল গ্রেডিয়েন্ট তৈরি করুন


ম্যাট্রিক্স সহ 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>

  1. জাভাস্ক্রিপ্ট দিয়ে একটি করণীয় তালিকা তৈরি করুন

  2. কিভাবে HTML দিয়ে একটি গ্রন্থপঞ্জি তৈরি করবেন?

  3. কিভাবে HTML দিয়ে ফাইল আপলোড বাটন তৈরি করবেন?

  4. কিভাবে HTML দিয়ে ডাউনলোড লিঙ্ক তৈরি করবেন?