首頁 > web前端 > H5教程 > 主體

html5 canvas繪製愛心的方法範例

黄舟
發布: 2017-10-31 10:35:08
原創
6116 人瀏覽過

第一種方法

html5 canvas繪製愛心的方法範例
程式碼實作的一種方法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>使用桃心形方程绘制爱心</title>
</head>
<body>
    <canvas></canvas>
    <script>
        var canvas = document.querySelector(&#39;canvas&#39;);
        var ctx = canvas.getContext(&#39;2d&#39;);
        canvas.width = window.innerWidth;
        canvas.height = window.innerHeight;
        var Heart = function(x, y) {
            this.x = x;
            this.y = y;
            this.vertices = [];
            for(let i=0; i<30; i++) {
                var step = i / 30 * (Math.PI * 2);//设置心上面两点之间的角度,具体分成多少份,好像需要去试。
                var vector = {
                    x : (15 * Math.pow(Math.sin(step), 3)),
                    y : -(13 * Math.cos(step) - 5 * Math.cos(2 * step) - 2 * Math.cos(3 * step) - Math.cos(4 * step))
                }
                this.vertices.push(vector);
            }
        }
        Heart.prototype.draw = function() {
            ctx.translate(-1000,this.y);//这一步跟ctx.shadowOffsetX必须一起使用,不明白为啥?
            ctx.beginPath();
            for(let i=0; i<30; i++) {
                var vector = this.vertices[i];
                ctx.lineTo(vector.x, vector.y);
            }
            ctx.shadowColor = "red";
            ctx.shadowOffsetX = this.x+1000;
            ctx.fill();
        }
        canvas.onmousedown = function(e) {
            var x = e.offsetX;
            var y = e.offsetY;
            var heart = new Heart(x, y);
            heart.draw();
        }
    </script>
</body>
</html>
登入後複製

以上是html5 canvas繪製愛心的方法範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!