0

我正在使用一个生成 div 的脚本。这个 div 略有偏移。有没有一种简单的方法可以将 4px 添加到位置。这是 Javascript 生成位置的方式:

top:"+a.nzOffset.top+"px;

我在想这样的事情:

top:("+a.nzOffset.top+"+4)px;
4

2 回答 2

0

你可以使用 jquery 来移动你的 div

animate 可以轻松完成您的要求

$(object).animate()

在此处查看更多信息:http: //api.jquery.com/animate/

并更新位置:

 $(this).animate({ 'top': pos1.top + 'px', 'left': pos1.left + 'px'}, 200, function(){
        //end of animation.. if you want to add some code here
    });
于 2013-05-31T07:28:08.683 回答
0

如果您知道divid 或 css 类应用于那个div,那么您可以应用边距将该 div 移动为

#divid{
   margin:10px;
}

或者

.divclass{
   margin:10px;
}
于 2013-05-31T07:30:39.777 回答