We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果谷歌是对的,我很确定它就在这里 http://www.ianlunn.co.uk/插件/jquery-parallax/
Pretty sure its here if google is right http://www.ianlunn.co.uk/plugins/jquery-parallax/
我一直在寻找。我创建了一个挂钩 window.scroll 事件并将 div 移动到适当位置的事件。
https://github.com/eiu165/Parallax/tree/master/src
工作示例
我对原始示例进行了扩展,使其更易于使用。我的工作是水平。请随意使用它。
使用
var hotSpots = [0, 2000, 4000, 6000, 8000];
定义页面的位置,然后对移动的 div 进行分类并为其指定 x 速度 和 < em>y 速度
并将元素放入移动 div 中的 x 位置 和 y 位置 以及您希望其显示的框架(页面)。
它基于我在该网站上发现的内容。
http://f6design.com/projects/parallax-scrolling/
I have been looking. I created one that hooks into the window.scroll event and moves the divs to the appropriate spot.
https://github.com/eiu165/Parallax/tree/master/src
working sample
I have expanded on the original to make it easier to use. mine works horizontally. feel free to use it.
use
var hotSpots = [0, 2000, 4000, 6000, 8000];
to define the locations of your pagesthen class your moving div and give it an x speed and a y speed
and put elements inside the moving div at an x position and y position and what frame(page) you want it to show.
it is based off of what I found was based off of this site.
http://f6design.com/projects/parallax-scrolling/