滚动图片代码 图片自动滚动js

效果

两个css代码实现全屏滚动效果

滚动图片代码 图片自动滚动js

html代码

<body> <div class="container"> <section> <h3>第一屏内容</h3> <p> 在父容器上使用scroll-snap-type 属性 <br> 第一个参数y 是y轴捕捉位置 <br> mandatory 超过距离则自动滚动到下一个容器 <br> scroll-snap-type:y mandatory <br> 在需要滚动的容器上使用 scroll-snap-align 属性 <br> start 开始部分 end 结束部分 center 中间部分 <br> scroll-snap-align:start; <br> </p> </section> <section> <h3>第二屏内容</h3> <p> 在父容器上使用scroll-snap-type 属性 <br> 第一个参数y 是y轴捕捉位置 <br> mandatory 超过距离则自动滚动到下一个容器 <br> scroll-snap-type :y mandatory <br> 在需要滚动的容器上使用 scroll-snap-align 属性 <br> start 开始部分 end 结束部分 center 中间部分 <br> scroll-snap-align:start; <br> </p> </section> <section> <h3>第三屏内容</h3> <p> 在父容器上使用scroll-snap-type 属性 <br> 第一个参数y 是y轴捕捉位置 <br> mandatory 超过距离则自动滚动到下一个容器 <br> scroll-snap-type :y mandatory <br> 在需要滚动的容器上使用 scroll-snap-align 属性 <br> start 开始部分 end 结束部分 center 中间部分 <br> scroll-snap-align:start; <br> </p> </section> </div></body>css代码

<style> body { margin: 0; } .container { height: 100vh; overflow-y: scroll; scroll-snap-type: y mandatory; } section { box-sizing: border-box; padding: 112px; height: 100%; color: white; scroll-snap-align: start; } section:nth-of-type(1) { background-color: #60af15; } section:nth-of-type(2) { background-color: #158baf; } section:nth-of-type(3) { background-color: #af1581; }</style>

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。

发表回复

登录后才能评论