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

溫馨提示×

溫馨提示×

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

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

怎么用JS實現太極圖案

發布時間:2022-09-23 09:39:44 來源:億速云 閱讀:150 作者:iii 欄目:開發技術

這篇文章主要講解了“怎么用JS實現太極圖案”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用JS實現太極圖案”吧!

效果圖

怎么用JS實現太極圖案

剛看到這個圖案時候可能毫無頭緒,因為各種圓弧,在實現時甚至都不知道應該用什么函數,但如果我們換一種樣式,看起來是不是簡單很多:

怎么用JS實現太極圖案

canvas 實現

<canvas id="canvas" width="600" height="600"></canvas>

為了方便后續繪制,我們可以將 canvas 的坐標原點從左上角移到 canvas 的中心點

const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
ctx.translate(canvas.width / 2, canvas.height / 2);

首先我們繪制右側的半圓,arc 方法的入參除了圓心、半徑、弧度外,還可以設置是順時針還是逆時針的方式從從開始角度畫到結束角度。

// 半徑
const radius = 150;
// 繪制右邊的半圓
ctx.beginPath();
ctx.fillStyle = '#fff';
// false 表示順時針旋轉
ctx.arc(0, 0, radius, -90 * Math.PI / 180, 90 * Math.PI / 180, false)
ctx.fill();

怎么用JS實現太極圖案

按照同樣的方式,我們完成左側的黑色半圓

// 繪制左邊的半圓
ctx.beginPath();
ctx.fillStyle = '#000';
// 順時針旋轉
ctx.arc(0, 0, radius, -90 * Math.PI / 180, 90 * Math.PI / 180, true)
ctx.fill();

怎么用JS實現太極圖案

繪制黑色圓

下面我們繪制下面的黑色圓,黑色圓的 Y 軸其實就是半徑的一半

// 繪制下面的黑色圓
ctx.beginPath();
ctx.fillStyle = '#000';
ctx.arc(0, radius / 2, radius / 2, 0, 360 * Math.PI / 180);
ctx.fill();

而上面白色圓的 Y 軸也同樣是半徑的一半,只不過是負數

// 繪制上面的白色圓
ctx.beginPath();
ctx.fillStyle = '#fff';
ctx.arc(0, -radius / 2, radius / 2, 0, 360 * Math.PI / 180);
ctx.fill();

怎么用JS實現太極圖案

看著是不是有那么點感覺了?剩下的就簡單很多了,依照兩個小圓,在同樣的圓心畫兩個更小的圓:

// 繪制白色小點
ctx.beginPath();
ctx.fillStyle = '#fff';
ctx.arc(0, radius / 2, 10, 0, 360 * Math.PI / 180);
ctx.fill();
// 繪制黑色小點
ctx.beginPath();
ctx.fillStyle = '#000';
ctx.arc(0, -radius / 2, 10, 0, 360 * Math.PI / 180);
ctx.fill();

如此便實現我們最終的效果。

完整DEMO

Style

*, *::before, *::after {
  margin: 0;
  padding: 0;
}
canvas {
  border: 1px solid #eee;
  background: #ccc;
}

Script

const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
ctx.translate(canvas.width / 2, canvas.height / 2);
// 半徑
const radius = 150;
// 繪制右邊的半圓
ctx.beginPath();
ctx.fillStyle = '#fff';
// 順時針旋轉
ctx.arc(0, 0, radius, -90 * Math.PI / 180, 90 * Math.PI / 180, false)
ctx.fill();
// 繪制左邊的半圓
ctx.beginPath();
ctx.fillStyle = '#000';
// 順時針旋轉
ctx.arc(0, 0, radius, -90 * Math.PI / 180, 90 * Math.PI / 180, true)
ctx.fill();
// 繪制下面的黑色圓
ctx.beginPath();
ctx.fillStyle = '#000';
ctx.arc(0, radius / 2, radius / 2, 0, 360 * Math.PI / 180);
ctx.fill();
// 繪制白色小點
ctx.beginPath();
ctx.fillStyle = '#fff';
ctx.arc(0, radius / 2, 10, 0, 360 * Math.PI / 180);
ctx.fill();
// 繪制上面的白色圓
ctx.beginPath();
ctx.fillStyle = '#fff';
ctx.arc(0, -radius / 2, radius / 2, 0, 360 * Math.PI / 180);
ctx.fill();
// 繪制黑色小點
ctx.beginPath();
ctx.fillStyle = '#000';
ctx.arc(0, -radius / 2, 10, 0, 360 * Math.PI / 180);
ctx.fill();

感謝各位的閱讀,以上就是“怎么用JS實現太極圖案”的內容了,經過本文的學習后,相信大家對怎么用JS實現太極圖案這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

js
AI

安顺市| 鹤峰县| 五原县| 平顶山市| 剑川县| 文昌市| 固镇县| 陵川县| 越西县| 淅川县| 琼中| 孝感市| 镶黄旗| 东平县| 温宿县| 宁德市| 大悟县| 武冈市| 长沙市| 桂阳县| 龙陵县| 双流县| 水城县| 六枝特区| 德江县| 浦城县| 故城县| 绥阳县| 卫辉市| 宁国市| 临江市| 长阳| 盐边县| 大庆市| 蓝田县| 宁明县| 鄂伦春自治旗| 长宁区| 贵州省| 五家渠市| 北碚区|