leaysgur / prlx

Safe way to parallax your site!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

prlx

Safe way to parallax your site!

See https://leader22.github.io/prlx/index.html?win=0

// これを
window.addEventListener('scroll', function() {
    var posY = window.scrollY;
    // do something.
}, false);

// こうしようという試み
var prlx = new Prlx({ raf: true });
// var prlx = new Prlx({ fps: 30 });

prlx.onScroll(function(pos) {
    var posY = pos.y;
    // do something.
});

// スタートするまで何もしないよ
prlx.start();

// いらなくなったら
prlx.dispose();

About

Safe way to parallax your site!

License:MIT License


Languages

Language:JavaScript 100.0%