簡體   English   中英

在JavaScript畫布上移動圖像

[英]Moving an image on a javascript canvas

我正在嘗試制作一個非常簡單的動畫,使其在加載到Javascript Canvas上的圖像向右滑動的情況下起作用。 以下代碼適用於繪制的矩形,但是當我嘗試插入圖像時,沒有加載任何內容,但沒有錯誤消息。 我需要讓它只使用Javascript。

window.requestAnimFrame = (function(){
  return  window.requestAnimationFrame       ||
          window.webkitRequestAnimationFrame ||
          window.mozRequestAnimationFrame    ||
          window.oRequestAnimationFrame      ||
          window.msRequestAnimationFrame     ||
          function( callback ){
            window.setTimeout(callback, 1000 / 60);
          };
})();

var canvas = document.getElementById("canvas"),
    cx = canvas.getContext("2d");

function Card(x,y){
  this.x = x || 0;
  this.y = y || 0;


  this.draw = function(){
    var img = new Image();
    img.onload = function() 
    {
        cx.drawImage(img, x, y);
    }
    img.src = "images/back.jpg";
  }
}

var myCard = new Card(50,50);

function loop(){
  cx.clearRect(0, 0, canvas.width, canvas.height);

  myCard.x++;

  myCard.draw();

  requestAnimFrame(loop);
}
loop();

問題是您的[x,y]值在繪圖函數中未定義。

演示: http : //jsfiddle.net/m1erickson/qAm39/

這是對代碼的重構,以使事情保持在適當的范圍內:

<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>

<style>
    body{ background-color: ivory; }
    #canvas{border:1px solid red;}
</style>

<script>
$(function(){


    window.requestAnimFrame = (function(){
      return  window.requestAnimationFrame       ||
              window.webkitRequestAnimationFrame ||
              window.mozRequestAnimationFrame    ||
              window.oRequestAnimationFrame      ||
              window.msRequestAnimationFrame     ||
              function( callback ){
                window.setTimeout(callback, 1000 / 60);
              };
    })();

    var canvas = document.getElementById("canvas"),
        cx = canvas.getContext("2d");

    function Card(x,y){
      this.x = x || 0;
      this.y = y || 0;
      this.img=new Image();

      this.init=function(){

        // "var self=this" makes myCard available in the img.onload function
        // otherwise "this" inside img.onload refers to the img
        var self=this;

        this.img.onload = function() 
        {
            self.draw();
            loop();
        }
        this.img.src = "https://dl.dropboxusercontent.com/u/139992952/stackoverflow/house16x16.png";  
      }

      // x,y need to be this.x and this.y

      this.draw = function(){
        cx.drawImage(this.img, this.x, this.y);
      }

    }

    var myCard = new Card(50,50);
    myCard.init();

    function loop(){

      if(myCard.x<canvas.width-20){
          requestAnimFrame(loop);
      }

      cx.clearRect(0, 0, canvas.width, canvas.height);

      myCard.x++;

      myCard.draw();

    }


}); // end $(function(){});
</script>

</head>

<body>
    <canvas id="canvas" width=300 height=300></canvas>
</body>
</html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM