第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在香草javascript中制作移動(dòng)線?

如何在香草javascript中制作移動(dòng)線?

我正在嘗試在香草 javascript 中創(chuàng)建下雨效果。下面是我嘗試過的代碼。我在y每個(gè)間隔更新坐標(biāo),但需要清除前一行,使其看起來像下降線效果。謝謝var canvas = document.getElementById("DemoCanvas");var ctx = canvas.getContext("2d");class Drop {  constructor() {    this.x = canvas.width / 2;    this.y = 0;    this.yspeed = 10;  }  fall() {    this.y = this.y + this.yspeed;  }  show() {    ctx.moveTo(this.x, this.y);    ctx.lineTo(this.x, this.y + 10);    ctx.stroke();  }}if (canvas.getContext) {  let d = new Drop();  setInterval(() => {    d.show();    d.fall();  }, 500);}<body>  <canvas id="DemoCanvas" width="1400" height="1400"></canvas></body>
查看完整描述

1 回答

?
一只甜甜圈

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超5個(gè)贊

只需調(diào)用ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);,同樣,調(diào)用時(shí)stroke,您需要先調(diào)用ctx.beginPath(),所有這些:


var canvas = document.getElementById("DemoCanvas");

      var ctx = canvas.getContext("2d");

      class Drop{

        constructor(){

          this.x = canvas.width / 2;

          this.y = 0;

          this.yspeed = 10;

        }

        fall(){

          this.y = this.y + this.yspeed;

        }

      

        show(){

          ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height)

          ctx.beginPath()

          ctx.moveTo(this.x, this.y);

          ctx.lineTo(this.x, this.y+10);

          ctx.stroke();

        }

      }

      if (canvas.getContext) {

        let d = new Drop();

        

        setInterval(()=>{

          d.show();

          d.fall();

        },500);

      }

<body>

    <canvas id="DemoCanvas" width="1400" height="1400"></canvas>

  </body>


查看完整回答
反對 回復(fù) 2022-10-27
  • 1 回答
  • 0 關(guān)注
  • 95 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號