91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

canvas知識總結

發布時間:2020-10-13 23:05:41 來源:腳本之家 閱讀:151 作者:13611606223 欄目:web開發

1.基礎知識

canvas元素繪制圖像的時候有兩種方法,分別是

    context.fill()//填充
    context.stroke()//繪制邊框

style:在進行圖形繪制前,要設置好繪圖的樣式

    context.fillStyle//填充的樣式
    context.strokeStyle//邊框樣式
    context.lineWidth//圖形邊框寬度

context.arc(centerx圓心橫左邊,centery圓心縱坐標,radius半徑,startingAngle起始弧度值,endingAngle結束弧度值,anticlockwise='false'順時針默認false)

2.繪制非填充線段

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title></title>
 <link rel="stylesheet" href="http://r01.uzaicdn.com/content/v1/styles/subject.css"> 
 <link rel="stylesheet" href="styles/lianxi.css">
 <script src="https://cache.yisu.com/upload/information/20200622/114/77539.png');</script><![endif]-->
 <style type="text/css">
 .canvas{border: 1px solid #000;display: block;margin: 0 auto;margin-top: 50px;}
 </style>
 <script>
 window.onload=function(){
    function draw(){
  var canvas = document.getElementById('canvas');
  if (canvas.getContext){
  var ctx = canvas.getContext('2d');
  canvas.width=300;
  canvas.height=300;
      ctx.beginPath(); //一個繪畫開始
    ctx.moveTo(50,50);//線段起點
    ctx.lineTo(100,100);//終點1
    ctx.lineTo(50,100);//終點2
        ctx.lineTo(50,50);//終點3
        ctx.lineWidth=5;//邊框寬度
        ctx.strokeStyle="red"; //邊框樣式
        ctx.closePath(); //一個繪畫結束
   ctx.stroke();//繪制線段
    }else{
     alert('當前瀏覽器不支持,請更換瀏覽器');
    }
 }
 draw();
 } 
 </script>
 <style tyrp="text/css">
    canvas{ border: 1px solid black;margin: 0 auto;display: block;}
 </style>
</head>
<body>
 <canvas id="canvas">當前瀏覽器不支持,請更換瀏覽器</canvas>
</body>
</html>

3.繪制填充圖形

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title></title>
 <link rel="stylesheet" > 
 <link rel="stylesheet" href="styles/lianxi.css">
 <script src="https://cache.yisu.com/upload/information/20200622/114/77539.png');</script><![endif]-->
 <style type="text/css">
 .canvas{border: 1px solid #000;display: block;margin: 0 auto;margin-top: 50px;}
 </style>
 <script>
window.onload=function(){
    function draw(){
  var canvas = document.getElementById('canvas');
  if (canvas.getContext){
  var ctx = canvas.getContext('2d');
  canvas.width=300;
  canvas.height=300;
      ctx.beginPath(); //一個繪畫開始
    ctx.moveTo(50,50);//線段起點
    ctx.lineTo(100,100);//終點1
    ctx.lineTo(50,100);//終點2
    ctx.lineTo(50,50);//終點3
        ctx.fillStyle='red';
        ctx.fill();
        //邊框添加
        ctx.lineWidth=5;//邊框寬度
        ctx.strokeStyle="blue"; //邊框樣式
        ctx.closePath(); //一個繪畫結束
    ctx.stroke();//繪制線段
    }else{
     alert('當前瀏覽器不支持,請更換瀏覽器');
    }
 }
 draw();
 } 
 </script>
 <style tyrp="text/css">
    canvas{ border: 1px solid black;margin: 0 auto;display: block;}
 </style>
</head>
<body>
 <canvas id="canvas">當前瀏覽器不支持,請更換瀏覽器</canvas>
</body>
</html>

4.繪制圓弧

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title></title>
 <link rel="stylesheet" > 
 <link rel="stylesheet" href="styles/lianxi.css">
 <script src="https://cache.yisu.com/upload/information/20200622/114/77539.png');</script><![endif]-->
 <style type="text/css">
 canvas{border: 1px solid #000;display: block;margin: 0 auto;margin-top: 50px;}
 </style>
 <script>
 window.onload=function(){
    function draw(){
  var canvas = document.getElementById('canvas');
  if (canvas.getContext){
  var ctx = canvas.getContext('2d');
  canvas.width=800;
  canvas.height=800;
      ctx.beginPath(); //開始一個新的繪畫
        ctx.lineWidth=5;//邊框寬度
        ctx.strokeStyle="red"; //邊框樣式
        ctx.arc(100, 100, 30, 0, 1.5*Math.PI);
        ctx.closePath(); //一個繪畫結束,如果繪畫不是封閉的,就封閉起來
    ctx.stroke();//繪制線段
   ctx.beginPath(); //開始一個新的繪畫
        ctx.lineWidth=5;//邊框寬度
        ctx.strokeStyle="red"; //邊框樣式
        ctx.arc(200, 100, 30, 0, 2*Math.PI);
        ctx.closePath(); //一個繪畫結束,如果繪畫不是封閉的,就封閉起來
    ctx.stroke();//繪制線段

      ctx.beginPath(); //開始一個新的繪畫
        ctx.lineWidth=5;//邊框寬度
        ctx.strokeStyle="red"; //邊框樣式
        ctx.arc(300, 100, 30, 0, 0.5*Math.PI);
        ctx.closePath(); //一個繪畫結束,如果繪畫不是封閉的,就封閉起來
    ctx.stroke();//繪制線段
   ctx.beginPath(); //開始一個新的繪畫
        ctx.lineWidth=5;//邊框寬度
        ctx.strokeStyle="red"; //一個繪畫結束,如果繪畫不是封閉的,就封閉起來
        ctx.arc(400, 100, 30, 0, 0.5*Math.PI,true);//注意:0*PI,0.5*PI,1*PI,1。5*PI,2*PI所占據的位置是固定的
        ctx.closePath(); //一個繪畫結束
    ctx.stroke();//繪制線段
   ctx.beginPath(); //開始一個新的繪畫
        ctx.fillStyle="red"; //邊框樣式
        ctx.arc(500, 100, 30, 0, 1.5*Math.PI);
        ctx.closePath(); //一個繪畫結束,如果繪畫不是封閉的,就封閉起來
    ctx.fill();//繪制填充

    ctx.beginPath(); //開始一個新的繪畫
        ctx.lineWidth=5;//邊框寬度
        ctx.strokeStyle="red"; //邊框樣式
        ctx.arc(600, 100, 30, 0, 1.5*Math.PI);
    ctx.stroke();//繪制線段
    }else{
     alert('當前瀏覽器不支持,請更換瀏覽器');
    }
 }
 draw();
 }
 </script>
</head>
<body>
 <canvas id="canvas">當前瀏覽器不支持,請更換瀏覽器</canvas>
</body>
</html>

5.繪制矩形

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title></title>
 <link rel="stylesheet" > 
 <link rel="stylesheet" href="styles/lianxi.css">
 <script src="https://cache.yisu.com/upload/information/20200622/114/77539.png');</script><![endif]-->
 <style type="text/css">
 canvas{border: 1px solid #000;display: block;margin: 0 auto;margin-top: 50px;}
 </style>
 <script>
 window.onload=function(){
    function draw(){
  var canvas = document.getElementById('canvas');
  if (canvas.getContext){
  var ctx = canvas.getContext('2d');
  canvas.width=500;
  canvas.height=500;
      ctx.fillRect(25,25,100,100);//繪制一個填充的矩形
      ctx.clearRect(45,45,60,60);//清除指定矩形區域,讓清除部分完全透明
      ctx.strokeRect(50,50,50,50); //繪制一個矩形的邊框
    }else{
     alert('當前瀏覽器不支持,請更換瀏覽器');
    }
 }
 draw();
 } 
 </script>
</head>
<body>
 <canvas id="canvas">當前瀏覽器不支持,請更換瀏覽器</canvas>
</body>
</html>

6.繪制文本

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title></title>
 <link rel="stylesheet" > 
 <link rel="stylesheet" href="styles/lianxi.css">
 <script src="https://cache.yisu.com/upload/information/20200622/114/77539.png');</script><![endif]-->
 <style type="text/css">
 canvas{border: 1px solid #000;display: block;margin: 0 auto;margin-top: 50px;}
 </style>
 <script>
 window.onload=function(){
    function draw(){
  var canvas = document.getElementById('canvas');
  if (canvas.getContext){
  var ctx = canvas.getContext('2d');
  canvas.width=500;
  canvas.height=500;
      ctx.font = "48px serif";
      ctx.fillText("Hello world", 10, 50);
    }else{
     alert('當前瀏覽器不支持,請更換瀏覽器');
    }
 }
 draw();
 } 
 </script>
</head>
<body>
 <canvas id="canvas">當前瀏覽器不支持,請更換瀏覽器</canvas>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title></title>
 <link rel="stylesheet" > 
 <link rel="stylesheet" href="styles/lianxi.css">
 <script src="https://cache.yisu.com/upload/information/20200622/114/77539.png');</script><![endif]-->
 <style type="text/css">
 canvas{border: 1px solid #000;display: block;margin: 0 auto;margin-top: 50px;}
 </style>
 <script>
 window.onload=function(){
    function draw(){
  var canvas = document.getElementById('canvas');
  if (canvas.getContext){
  var ctx = canvas.getContext('2d');
  canvas.width=500;
  canvas.height=500;
      ctx.font = "48px serif";
      ctx.strokeText("Hello world", 10, 50);
    }else{
     alert('當前瀏覽器不支持,請更換瀏覽器');
    }
 }
 draw();
 } 
 </script>
</head>
<body>
 <canvas id="canvas">當前瀏覽器不支持,請更換瀏覽器</canvas>
</body>
</html>

7.圖片操作

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title></title>
 <link rel="stylesheet" > 
 <link rel="stylesheet" href="styles/lianxi.css">
 <script src="https://cache.yisu.com/upload/information/20200622/114/77539.png');</script><![endif]-->
 <style type="text/css">
 canvas{border: 1px solid #000;display: block;margin: 0 auto;margin-top: 50px;}
 </style>
 <script>
 window.onload=function(){
    function draw(){
  var canvas = document.getElementById('canvas');
  if (canvas.getContext){
  var ctx = canvas.getContext('2d');
  canvas.width=500;
  canvas.height=500;
     var img=new Image();
img.src='https://cache.yisu.com/upload/information/20200622/114/77540.jpg'
     img.onload=function(){
      ctx.drawImage(img,0,0);
      ctx.beginPath();
     ctx.moveTo(30,96);
     ctx.lineTo(70,66);
     ctx.lineTo(103,76);
     ctx.lineTo(170,15);
     ctx.stroke();
     }
    }else{
     alert('當前瀏覽器不支持,請更換瀏覽器');
    }
 }
 draw();
 } 
 </script>
</head>
<body>
 <canvas id="canvas">當前瀏覽器不支持,請更換瀏覽器</canvas>
</body>
</html>

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大名县| 晋城| 虹口区| 九龙县| 泸溪县| 巨野县| 洮南市| 探索| 宁德市| 徐水县| 尼木县| 葫芦岛市| 神农架林区| 盖州市| 盐源县| 平罗县| 梅河口市| 来宾市| 合阳县| 平乡县| 方正县| 岢岚县| 新沂市| 长沙县| 浙江省| 武夷山市| 鸡东县| 无为县| 新乐市| 孟村| 青神县| 长沙市| 桃园县| 牟定县| 鹤壁市| 乾安县| 百色市| 天气| 溧水县| 大埔区| 仪陇县|