我试图让文本以与其父 div 相同的速度滚动(以 1/10 的速度滚动)。目前,它以正常速度滚动。我做错了什么?
HTML:
<div id="blank" class="page">
<p>blah blah blah</p>
</div>
CSS:
body { background:url(images/background.gif); }
.page { overflow: auto; width: 580px; color: white; }
#blank { background: url(images/02.jpg) 50% 0 no-repeat fixed; height: 2300px;}
JS:
$('#blank').parallax("50%", 0, 0.1, true);
$('#blank p').parallax("50%", 0, 0.1, true);