使用JavaScript将图像从A移动到B.

时间:2011-11-05 17:08:23

标签: javascript animation transition motion

这是我第一次来这里,我不知道如何缩进这个抱歉:/

我有一辆面包车的图像,我正试图将它移动到屏幕上,好像它在驾驶一样。 一旦完成,我将缩放图像看起来好像它正在移开(并变小)。

我需要在没有任何软件包(例如JQuery)的标准javascript中完成。

我所拥有的是一辆面包车,由于某种原因我无法分解的是沿着两条路而不是一条路。也在错误的方向上移动(它应该沿着路径移动y = -25x,这样每25个像素向右移动它应该向上移动1个像素。)

为了说明我想要实现的目标,请看这个图片: http://i.stack.imgur.com/9WIfr.jpg

这是我的javascript文件:

var viewWidth = 800;        
var viewHeight = 480;        
var fps = 30;        
var delay = getFrame(fps);        
var vanWidth, vanHeight, vanObj;   

function initVan() {        
  vanObj = document.getElementById("van");        
  vanObj.style.position = "absolute";        
  vanObj.src = "pics/delivery/van.png";        
  vanWidth = 413;        
  vanHeight = 241;        
  var startX = 0-vanWidth;        
  var startY = viewHeight-vanHeight;        
  setPosition(startX,startY);        
  transition(startX,startY,3000);        
}

function transition(startX,startY,time) {        
  //the intention of this is to follow a path y=-25x in mathematical terms
  var endX = viewWidth;        
  var endY = startY-(endX/-25);        
  //note that this is the velocity per millisecond
  var velocityX = (endX-startX)/time;        
  var velocityY = (endY-startY)/time;        
  alert(endY+", "+startY);        
  move(velocityX,velocityY,endX,endY);        
}

function move(vX,vY,eX,eY) {        
  var posX = getX();        
  var posY = getY();        
  if (posX<=eX || posY<=eY) {        
    //velocityX (in milliseconds) * delay = the amount of pixels moved in one frame @fps=30
    var moveX = vX*delay;        
    var moveY = vY*delay;        
    var newX = posX+moveX;        
    var newY = posY+moveY;        
    setPosition(newX,newY);        
    setTimeout(function() {        
        move(vX,vY,eX,eY);        
    }, delay);        
  }        
} 


function getX() {        
  return vanObj.offsetLeft;        
}    

function getY() {        
  return vanObj.offsetTop;        
}  

function setPosition(newX,newY) {        
  vanObj.style.left = newY + "px";        
  vanObj.style.top = newX + "px";        
}        

function setSize(scaleX,scaleY) {        
  vanWidth *= scaleX;        
  vanHeight *= scaleY;        
  vanObj.width = vanWidth;        
  vanObj.height = vanHeight;        
}      

function getFrame(fps) {        
  return Math.floor(1000/fps);        
}  

这是我的HTML文件:

<script type="text/javascript" src="delivery.js"> </script>
<body onLoad="initVan();">
<img id="van" width=413 height=241/>

2 个答案:

答案 0 :(得分:5)

除非你有无库需求,或者特别喜欢重新发明轮子,否则我会使用jQuery的特效库解决这个问题,特别是.animate:http://api.jquery.com/animate/。请参阅该页面上的第一个示例。

$(document).ready(function() {
  $('#van')
    .attr({
      width: 413,
      height: 241  //etc.
    })
    .animate({
      width: "70%",
      height: "70%"  //etc.
  }, 3000);
});

更少的代码意味着更少的维护。意味着客户满意。

答案 1 :(得分:2)

即使你已经接受了答案,但还有一种方法可以在没有jQuery的情况下完成。

没有完成,但概念有效。

   window.onload = function () {
    updateVan(0);
    function updateVan(i)
    {
        var t = setTimeout(function () {
            document.getElementById("van").style.marginLeft = i + "px";
            document.getElementById("van").style.marginTop = (i/10) + "px";
            document.getElementById("van").style.height = (100-(i/10)) + "px";
            document.getElementById("van").style.width = (100-(i/10)) + "px";
            if (i < 300) updateVan(i+1);
        },30);
    }
}

此处的演示演示:http://webbies.dk/tmp/tmp.html