luxy.js一款js带滚动惯性的视觉差特效插件。该插件可以在页面中制作图片HTML内容滚动视觉差特效,并且在页面滚动时,带有惯性效果,非常炫酷。
安装
可以通过npm来安装luxy.js插件。
npm install luxy.js --save
使用方法
在页面中引入luxy.js文件。
<script src="luxy.js"></script>
HTML结构
使用js带滚动惯性的视觉差特效插件的基本HTML结构如下:
<div id="luxy"> //这里放置内容 </div>
在内容中通过luxy-el
来指定需要执行滚动视觉差的元素。
<div id="luxy"> <div class="luxy-el"></div> </div>
可以通过data-speed-y
和data-offset
属性来指定滚动视觉差的速度。
<div id="luxy"> <div class="luxy-el" data-speed-y="5" data-offset="-50"></div> </div>
如果你想制作水平滚动视觉差,可以指定data-horizontal="1"
,并指定它的速度data-speed-x="-5"
。
<div id="luxy"> <div class="luxy-el" data-speed-x="1" data-offset-x="-5"></div> </div>
初始化插件
在页面DOM元素加载完毕之后,通过luxy.init();
方法来初始化该js滚动视觉差插件。
luxy.init();
使用data-*属性
在使用插件时,你可以使用data-parallax-background
属性来设置参数。但是你同样需要使用$(element).parallaxBackground()
方法来调用插件。例如:
<div class="parallax-background" data-parallax-background='{"duration": 3, "zoom": 30}'> <div class="parallax-inner" style="background-image: url('background-image.jpg')"> </div> </div>
配置参数
该js滚动视觉差插件的可用配置参数有:
参数 | 默认值 | 描述 |
wrapper | '#luxy' | 整个包裹容器的选择器。 |
targets | '.luxy-el' | 滚动视觉差的目标元素。 |
wrapperSpeed | 0.8 | 惯性滚动的速度。 |
该js带滚动惯性的视觉差特效插件的github地址为:https://github.com/min30327/luxy.js
版权声明
版权说明: 仅限用于学习和研究目的;不得将上述内容用于商业和非法用途!否则一切后果自负。我们非常重视版权问题,如有侵权请邮件至(171373236#qq.com)与我们联系处理,敬请谅解!