您好,登錄后才能下訂單哦!
使用JavaScript怎么繪制一棵樹?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
用純js畫一棵樹。思路:
1、一棵樹的圖片,作為頁面背景;
2、通過html5中的canvas畫布進行遮罩;
3、定時每隔10ms,從下往上清除1px的遮罩;
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>My JS tree</title> <style> body { width: 1000px; height: 570px; background-image: url(image/tree.png); background-size: 1000px, 570px; background-repeat: no-repeat; margin-top: 0px; margin-bottom: 0px; } </style> </head> <body> <canvas id="mycanvas" width="1000px" height="570px"></canvas> <script> var c = document.getElementById("mycanvas"); var ctx = c.getContext("2d"); ctx.fillStyle = "#ffffff"; ctx.fillRect(0, 0, c.width, c.height);//矩形遮住背景圖像 var y = c.height; window.setInterval(function() { if (y > 2) { ctx.clearRect(0, y - 1, c.width, y); y = y - 1; } else { window.clearInterval(this);//清除定時 ctx.clearRect(0, 0, c.width, c.height); } }, 10);//每隔10ms清除1px的遮照 </script> </body> </html>
關于使用JavaScript怎么繪制一棵樹問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。