親の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);