使用javascript连续移动div位置

时间:2016-03-29 06:50:00

标签: javascript html css

我想从左到右,从上到下连续移动我的div位置。

首先移动我的代码后停止。

请检查https://jsfiddle.net/LLqmL33p/

     function placeDiv(x_pos) {
  var d = document.getElementById('boxed');
  d.style.position = "absolute";
  d.style.left = x_pos+'px';
    setTimeout(function(){   placeDiv2(10); }, 1000);

}
function placeDiv2(y_pos) {
  var d = document.getElementById('boxed');
  d.style.position = "absolute";
  d.style.top = y_pos+'px';
  setTimeout(function(){ placeDiv(15); }, 1000);

}

placeDiv(10);

我无法理解我现在能做些什么?

4 个答案:

答案 0 :(得分:7)

该函数持续运行,但由于x_pos = 10和y_pos = 15始终具有相同的值,div不会移动,请尝试:

function placeDiv(x_pos) {
     var d = document.getElementById('boxed');
     d.style.position = "absolute";
     if(d.style.left=="")
     {
        var cur_left=0;
     } 
     else
     {
         var cur_left=parseFloat(d.style.left);
     }
     d.style.left = (cur_left+x_pos)+'px';
     setTimeout(function(){   placeDiv2(10); }, 1000);

 }
 function placeDiv2(y_pos) {
     var d = document.getElementById('boxed');
     //d.style.position = "absolute";
     if(d.style.top=="")
     {
        var cur_top=0;
     }
     else
     {
        var cur_top=parseFloat(d.style.top);
     }
     d.style.top = (cur_top+y_pos)+'px';
     setTimeout(function(){ placeDiv(15); }, 1000);

}

placeDiv(10);

我所做的是将x_pos和y_pos值添加到div的当前左侧和顶部值。

这是更新的小提琴:https://jsfiddle.net/LLqmL33p/2/ 抱歉我的英语不好。

答案 1 :(得分:0)

@keyframes move { 0%{ left: 0px; top: 0px; } 100%{ left: 100%; top: 100%; }}


div {
  width: 100px;
  height: 100px;
  background: red;
  position: absolute;
  animation: move 10s linear infinite;
}
<div></div>

答案 2 :(得分:0)

setTimeOut用于在指定的延迟后执行一次

您似乎想要使用setInterval

答案 3 :(得分:0)

https://jsfiddle.net/LLqmL33p/1/

     ////css
    @keyframes move { 0%{ left: 0px; top: 0px; } 50%{ left: 80%; top: 80%; } 80%{left: 90%; top: 10%;} 100%{left: 0%; top: 0%;}}


div {
  width: 100px;
  height: 100px;
  background: red;
  position: absolute;
  animation: move 10s linear infinite;
}

      /////html
       <div></div>