【发布时间】:2019-10-14 02:06:27
【问题描述】:
我有一个页眉、页脚和两个正文部分。我只想对我的视差容器进行整页滚动。我设法为视差设计了标记和样式,但脚本没有成功。
<div class="wrapper">
<div class="top-content">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
<div class="parallax">
<div class="parallax__screen">
<div class="parallax__image">
<div class="parallax__illustration" style="background-image: url('https://picsum.photos/id/1/200/300');"></div>
</div>
<div class="parallax__copy">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div>
<div class="parallax__screen">
<div class="parallax__image">
<div class="parallax__illustration" style="background-image: url('https://picsum.photos/id/22/200/300');"></div>
</div>
<div class="parallax__copy">
<p>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled
</p>
</div>
</div>
<div class="parallax__screen">
<div class="parallax__image">
<div class="parallax__illustration" style="background-image: url('https://picsum.photos/id/15/200/300');"></div>
</div>
<div class="parallax__copy">
<p>
it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged
</p>
</div>
</div>
<div class="parallax__screen">
<div class="parallax__image">
<div class="parallax__illustration" style="background-image: url('https://picsum.photos/id/10/200/300');"></div>
</div>
<div class="parallax__copy">
<p>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,
</p>
</div>
</div>
</div>
<div class="bottom-content">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
</div>
任何帮助将不胜感激。这是我的fiddle
【问题讨论】:
-
JS在哪里?
-
您需要 JS 解决方案来处理这种情况,示例如下:codepen.io/igstudio/pen/pbYOab/?html-preprocessor=pug
标签: jquery html css sass parallax