我正在使用生成div的脚本。这个div有点偏移。有没有一种简单的方法可以将4px添加到该位置。这就是Javascript生成职位的方式:
top:"+a.nzOffset.top+"px;
我正在考虑这样的事情:
top:("+a.nzOffset.top+"+4)px;
答案 0 :(得分:0)
你可以使用jquery来移动你的div
动画可以做你想要的事情
$(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
});
答案 1 :(得分:0)
如果您知道应用于div
的{{1}} id或css类,那么您可以应用保证金将该div移动为
div
或者
#divid{
margin:10px;
}