原生js实现三个div层动态交换位置

2020-11-15 21:54

阅读:551

标签:com   http   blog   style   class   div   img   code   java   c   log   

html代码部分

soscw.com,搜素材

input type="button" onclick="startMove()" value="点击"/>


div class="localbox">
    div id="b1" class="block1">div>
    div id="b2" class="block2">div>
    div id="b3" class="block3">div>
div>
soscw.com,搜素材

 

样式部分

soscw.com,搜素材
/**/
.localbox{width:970px;margin:0 auto;height:600px;position:relative;}
.block1{
width:610px;
height:600px;
background-color:#ffcccc;
position:absolute;
top:0;
left:0;
z-index:2;
}
.block2{
width:360px;
height:300px;
position:absolute;
background-color:#ccffcc;
top:0;
left:610px;
z-index:1;
}
.block3{
width:360px;
height:300px;
position:absolute;
background-color:#ccccff;
top:300px;
left:610px;
z-index:0;
}
/**/
soscw.com,搜素材

 

 

js部分

soscw.com,搜素材
/**/
var timer1=null;
var timer2=null;
var timer3=null;
var b1,b2,b3;
var i=0;
var box=new Array(3);
box[0]=document.getElementById(‘b1‘);
box[1]=document.getElementById(‘b2‘);
box[2]=document.getElementById(‘b3‘);

function startMove(){
    for(i=0;ii){
        if(box[i].offsetLeft==0&&box[i].offsetTop==0){
            b1=box[i];
        }
        if(box[i].offsetLeft==610&&box[i].offsetTop==0){
            b2=box[i];
        }
        if(box[i].offsetLeft==610&&box[i].offsetTop==300){
            b3=box[i];
        }
    }
    timer1=setInterval(function(){
        if(b1.offsetLeft>=610){
            clearInterval(timer1);
        }else{
            b1.style.height=b1.offsetHeight-30+‘px‘;
            b1.style.width=b1.offsetWidth-25+‘px‘;
            b1.style.left=b1.offsetLeft+61+‘px‘;
        }
    },125);
    timer2=setInterval(function(){
        if(b2.offsetTop>=300){
            clearInterval(timer2);
        }else{
            b2.style.top=b2.offsetTop+30+‘px‘;
        }
    },125);
    timer3=setInterval(function(){
        if(b3.offsetLeft){
            clearInterval(timer3);
        }else{
            b3.style.left=b3.offsetLeft-61+‘px‘;
            b3.style.top=b3.offsetTop-30+‘px‘;
            b3.style.width=b3.offsetWidth+25+‘px‘;
            b3.style.height=b3.offsetHeight+30+‘px‘;
        }
    },125);
    }
/**/
soscw.com,搜素材

 

原生js实现三个div层动态交换位置,搜素材,soscw.com

原生js实现三个div层动态交换位置

标签:com   http   blog   style   class   div   img   code   java   c   log   

原文地址:http://www.cnblogs.com/codetown/p/3699293.html


评论


亲,登录后才可以留言!