我正在建立一个这样的网站(几乎是垂直幻灯片):
http://mikelegacywebdesign.com/scrollpage_test/index.html
我想要做的一件事,我不清楚的是如何使滚动SNAP滚动到颜色变化的点.
例如,当滚动时,您可以在您滚动到的下一个颜色的顶部附近获得约50-100像素,如果这将会捕捉到这一点,这将是很好的,而不是只是继续滚动,因为很难让“框架”完全对齐.它依赖于用户滚动完美的数量,以便它们正在查看整个帧,而不是序列中前一个或下一个帧的片段.
任何知道是否有一个jQuery插件或者这样的东西将会是我的英雄.
<!DOCTYPE HTML> <html lang="en-US"> <head> <Meta charset="UTF-8"> <title>Scrollpage Test</title> <style type="text/css"> html,body { margin: 0; padding: 0; height: 100%; width: 100%; } .container { height: 400%; width: 100%; } .section { height: 35%; width: 100%; } #section1 { background-color: #1d9ad7; } #section2 { background-color: #c83e3d; } #section3 { background-color: #75b946; } #section4 { background-color: #f4be2f; } </style> </head> <body> <div class="container"> <div class="section" id="section1"></div> <div class="section" id="section2"></div> <div class="section" id="section3"></div> <div class="section" id="section4"></div> </div> </body> </html>