中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何實現HTML5 Canvas旋轉動畫

發布時間:2021-10-08 10:26:18 來源:億速云 閱讀:203 作者:iii 欄目:web開發

本篇內容介紹了“如何實現HTML5 Canvas旋轉動畫”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

效果圖:
如何實現HTML5 Canvas旋轉動畫

方法一:

代碼如下:

<!DOCTYPE HTML>
 <html>
 <body>
 <canvas id="myCanvas" width="500" height="500">your browser does not support the canvas tag</canvas>
 <script type="text/javascript">
 var deg = 0;
 var r = 30;
 var rl = 100;
 function drawTaiji() {
 var canvas = document.getElementById('myCanvas');
 var context = canvas.getContext('2d');
 var colorA = "rgb(0, 0, 0)";
 var colorB = "red";
 
 var px =Math.sin(deg)*r;
 var py =Math.cos(deg)*r;
 context.clearRect(0, 0, 300, 300);
 context.beginPath();
 context.fillStyle = colorA;
 context.arc(rl, rl, 60, 0.5 * Math.PI +deg, 1.5 * Math.PI +deg, true);
 context.closePath();
 context.fill();
 context.fillStyle = colorB;
 context.beginPath();
 context.arc(rl, rl, 60, 1.5* Math.PI +deg, 0.5 * Math.PI +deg, true);
 context.closePath();
 context.fill();
 context.fillStyle = colorB;
 context.beginPath();
 context.arc(rl+px, rl-py, 30, 0.5 * Math.PI + deg, 1.5 * Math.PI + deg, true);
 context.closePath();
 context.fill();
 context.fillStyle = colorA;
 context.beginPath();
 context.arc(rl-px, rl+py, 30, 1.5 * Math.PI + deg, 0.5 * Math.PI + deg, true);
 context.closePath();
 context.fill();
 context.fillStyle = colorA;
 context.beginPath();
 context.arc(rl+px, rl-py, 8, 0, 2 * Math.PI, true);
 context.closePath();
 context.fill();
 context.fillStyle = colorB;
 context.beginPath();
 context.arc(rl-px, rl+py, 8, 0, 2 * Math.PI, true);
 context.closePath();
 context.fill();
 deg +=0.1;
 }
 setInterval(drawTaiji, 100);
 </script> </p> <p></body>
 </html>

方法二:

代碼如下:

 <!DOCTYPE HTML>
 <html>
 <body>
 <canvas id="myCanvas" width="500" height="500" >your browser does not support the canvas tag </canvas>
 <script type="text/javascript">
 var canvas = document.getElementById('myCanvas');
 var ctx = canvas.getContext("2d");
 var angle = 0;
 var count = 360;
 var clrA = '#000';
 var clrB = 'red';
 
 function taiji(x, y, radius, angle, wise) {
 angleangle = angle || 0;
 wisewise = wise ? 1 : -1;
 ctx.save();
 ctx.translate(x, y);
 ctx.rotate(angle);
 ctx.fillStyle = clrA;
 ctx.beginPath();
 ctx.arc(0, 0, radius, 0, Math.PI, true);
 ctx.fill();
 ctx.beginPath();
 ctx.fillStyle = clrB;
 ctx.arc(0, 0, radius, 0, Math.PI, false);
 ctx.fill();
 ctx.fillStyle = clrB;
 ctx.beginPath();
 ctx.arc(wise * -0.5 * radius, 0, radius / 2, 0, Math.PI * 2, true);
 ctx.fill();
 ctx.beginPath();
 ctx.fillStyle = clrA;
 ctx.arc(wise * +0.5 * radius, 0, radius / 2, 0, Math.PI * 2, false);
 ctx.arc(wise * -0.5 * radius, 0, radius / 10, 0, Math.PI * 2, true);
 ctx.fill();
 ctx.beginPath();
 ctx.fillStyle = clrB;
 ctx.arc(wise * +0.5 * radius, 0, radius / 10, 0, Math.PI * 2, true);
 ctx.fill();
 ctx.restore();
 }
 
 loop = setInterval(function () {
 beginTag = true;
 ctx.clearRect(0, 0, canvas.width, canvas.height);
 taiji(200, 200, 50, Math.PI * (angle / count) * 2, true);
 //taiji(350, 350, 50, Math.PI * ((count - angle) / count) * 2, false);
 angle = (angle + 5) % count;
 }, 50);
 </script> </p> <p></body>
 </html>

“如何實現HTML5 Canvas旋轉動畫”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

建湖县| 安远县| 万山特区| 鲁甸县| 北辰区| 香格里拉县| 旅游| 高陵县| 桃江县| 鹤岗市| 庆城县| 平原县| 紫云| 盱眙县| 聂荣县| 古交市| 临清市| 巴楚县| 屯门区| 凉城县| 寻乌县| 诏安县| 大渡口区| 台中县| 黑水县| 汶川县| 防城港市| 蕉岭县| 和静县| 乐山市| 青神县| 沂源县| 芮城县| 白银市| 壶关县| 曲松县| 仪征市| 曲麻莱县| 衡东县| 木兰县| 罗田县|