基于html5繪制圓形多角圖案
來源:易賢網(wǎng) 閱讀:1047 次 日期:2016-07-04 16:32:07
溫馨提示:易賢網(wǎng)小編為您整理了“基于html5繪制圓形多角圖案”,方便廣大網(wǎng)友查閱!

這篇文章主要為大家詳細介紹了基于html5實現(xiàn)圓形多角圖案,由淺入深繪制圓形多角圖案,感興趣的小伙伴們可以參考一下

先看看最簡單的效果圖:

名單

代碼如下:

JavaScript Code

var canvas = document.getElementById('my'), ctx = canvas.getContext('2d');   

  setInterval(function(){   

    ctx.clearRect(0,0,400,400);   

    ctx.save();   

    ctx.translate(200,200);   

    var ci =90, pi = Math.PI / ci, x1 = 100, y1 =0, x2 =0, y2 =0, x3 =0, y3 =0;   

    ctx.beginPath();   

    for(var i = ci *2; i >0; i--){   

      ctx.rotate(pi);   

      ctx.moveTo(x1,y1);   

      y2 = x1 * Math.sin(pi);   

      x2 = x1 * Math.cos(pi);   

      x3 = (x1 - x2) /2+ x2 +10+ Math.random() *20;   

      y3 = y2 /2;   

      ctx.lineTo(x3,y3);   

      ctx.lineTo(x2,y2);   

    }   

    ctx.stroke();   

    ctx.restore();   

  },100);  

在上面多角形的基礎上進一步之后為:

名單

代碼如下:

JavaScript Code

var canvas = document.getElementById('my'), ctx = canvas.getContext('2d'), r =10;   

    setInterval(function(){   

      ctx.clearRect(0,0,400,400);   

      ctx.save();   

      ctx.translate(200,200);   

      var grad = ctx.createRadialGradient(0,0,0,0,0,r+20);   

      grad.addColorStop(0.2,'white');   

      grad.addColorStop(0.7,'yellow');   

      grad.addColorStop(0.8,'orange');   

      ctx.beginPath();   

      ctx.fillStyle = grad;   

      ctx.arc(0,0,r,0,Math.PI*2,true);   

      ctx.fill();   

    var ci =90, pi = Math.PI / ci, x2 =0, y2 =0, x3 =0, y3 =0;   

      x1 =100;   

      y1 =0;   

      ctx.beginPath();   

      for(var i = ci *2; i >0; i--){   

        ctx.rotate(pi);   

        ctx.moveTo(r,0);   

        y2 = r * Math.sin(pi);   

        x2 = r * Math.cos(pi);   

        x3 = (r - x2) /2+ x2 +10+ Math.random() *20;   

        y3 = y2 /2;   

        ctx.lineTo(x3,y3);   

        ctx.lineTo(x2,y2);   

      }   

      ctx.fill();   

      ctx.restore();   

      r <=100&& (r +=2);   

   },100);   

以上就是本文的全部內容,希望對大家的學習有所幫助。

更多信息請查看網(wǎng)頁制作
易賢網(wǎng)手機網(wǎng)站地址:基于html5繪制圓形多角圖案
由于各方面情況的不斷調整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復僅供參考,敬請考生以權威部門公布的正式信息和咨詢?yōu)闇剩?/div>

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網(wǎng)