美文网首页
原来JS也能仿QQ三国

原来JS也能仿QQ三国

作者: 西瓜涼了夏天 | 来源:发表于2018-09-24 20:10 被阅读0次

    var oMove=document.querySelector('#remove');

    var oDiv=document.querySelector('#box1');

    var m=0,n=0,j=1;

    setInterval(function () {

    m--;

        n++;

        if(m==-400){

    n=0;

            m=0;

        }

    j++;

        if(j==4){

    j=1;

        }

    oDiv.style.background='url("gameImg/pic'+j+'.png")';

        oMove.style.marginTop=n+'px';

        oMove.style.marginLeft=m+'px';

    },10);

    相关文章

      网友评论

          本文标题:原来JS也能仿QQ三国

          本文链接:https://www.haomeiwen.com/subject/ofehoftx.html