主頁 > 知識(shí)庫 > canvas仿寫貝塞爾曲線的示例代碼

canvas仿寫貝塞爾曲線的示例代碼

熱門標(biāo)簽:黃島區(qū)地圖標(biāo)注 江蘇智能電銷機(jī)器人哪家好 南寧點(diǎn)撥外呼系統(tǒng)哪家公司做的好 鎮(zhèn)江智能外呼系統(tǒng)有效果嗎 成都智能外呼系統(tǒng)平臺(tái) 四川點(diǎn)撥外呼系統(tǒng) 云南大理400電話申請(qǐng)官方 電銷機(jī)器人電話用什么卡 當(dāng)涂高德地圖標(biāo)注

天正在等煙雨,而我在等你,啦啦啦,歡迎關(guān)注我的簡(jiǎn)書,今天分享的是原創(chuàng)的canvas仿寫貝塞爾曲線方法。具體如下:

效果圖:

html

<canvas id="mycanvas" width="500" height="500">您的瀏覽器不支持canvas</canvas>

css

canvas{ border: 1px solid black;}

js

var canvas = document.getElementById("mycanvas");
        var context = canvas.getContext("2d");
        var x1 = 100;
        var y1 = 100;
        var x2 = 400;
        var y2 = 400;
        draw();
        function draw(){
            //畫半透明的線
            context.beginPath();
            context.moveTo(500,0);
            context.lineTo(0,500);
            context.strokeStyle = "rgba(0,0,0,0.3)";
            context.lineWidth = 10;
            context.stroke();
            //畫連接線
            context.beginPath();
            context.moveTo(0,500);
            context.lineTo(x1,y1);
            context.lineWidth = 2;
            context.strokeStyle = "black";
            context.stroke();
            context.beginPath();
            context.moveTo(500,0);
            context.lineTo(x2,y2);
            context.lineWidth = 2;
            context.strokeStyle = "black";
            context.stroke();
            //畫紅球
            context.beginPath();
            context.arc(x1,y1,10,0,Math.PI*2);
            context.fillStyle = "orange";
            context.fill();
            //畫藍(lán)球
            context.beginPath();
            context.arc(x2,y2,10,0,Math.PI*2);
            context.fillStyle = "blue";
            context.fill();
            //畫貝塞爾曲線
            context.beginPath();
            context.moveTo(0,500);
            context.bezierCurveTo(x1,y1,x2,y2,500,0);
            context.lineWidth = 5;
            context.stroke();
        }
        //拖動(dòng)小球做動(dòng)畫
        //判斷是否拖動(dòng)小球
        //如果在小球上就做動(dòng)畫
        canvas.onmousedown = function(e){
            var ev = e || window.event;
            var x = ev.offsetX;
            var y = ev.offsetY;
            //判斷是否在紅球上
            var dis = Math.pow((x-x1),2) + Math.pow((y-y1),2);
            if(dis<100){
                console.log("鼠標(biāo)在紅球上");
                canvas.onmousemove = function(e){
                    var ev = e || window.event;
                    var xx = ev.offsetX;
                    var yy = ev.offsetY;
                    //清除畫布
                    context.clearRect(0,0,canvas.width,canvas.height);
                    x1 = xx;
                    y1 = yy;
                    //重繪制
                    draw();
                }
            }
            //判斷鼠標(biāo)是否在藍(lán)球上
            var dis = Math.pow((x-x2),2) + Math.pow((y-y2),2);
            if(dis<100){
                canvas.onmousemove = function(e){
                    var ev = e || window.event;
                    var xx1 = ev.offsetX;
                    var yy1 = ev.offsetY;
                    //清除畫布
                    context.clearRect(0,0,canvas.width,canvas.height);
                    x2 = xx1;
                    y2 = yy1;
                    //重繪制
                    draw();
                }
            }
        }
        document.onmouseup =function(){
            canvas.onmousemove = " ";
        }

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:南京 十堰 淮安 酒泉 佳木斯 咸寧 廣西 西寧

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《canvas仿寫貝塞爾曲線的示例代碼》,本文關(guān)鍵詞  canvas,仿寫,貝,塞爾,曲線,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《canvas仿寫貝塞爾曲線的示例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于canvas仿寫貝塞爾曲線的示例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章