我正在使用jScroller来显示一个选框..它工作正常,但它始终将我的div放在页面顶部而不是div的确切位置....
<div id="CaptDiv"> // this div is at the centre of my page
<div id="CaptionDiv" class="captiontext">
Find your Leads to Precede and Predate
</div>
</div>
我只申请了这个css ......
.captiontext
{
font-weight:bold; color:#69442f;
font-family: Arial,Helvetica,sans-serif; font-size:105%;margin-left:70px;
}
和我的jquery,
$(document).ready(function() {
$jScroller.add("#CaptDiv", "#CaptionDiv", "right", 1);
$jScroller.start();
});
答案 0 :(得分:3)
尝试添加位置:相对于包含滚动条的div。我想象JsScroller正在向滚动div添加position:absolute,而滚动div没有定位父级。因此,卷轴div相对于主体元素绝对定位