Go to file
2017-01-29 03:20:29 +01:00
demo Rename vanillaTilt.js to vanilla-tilt.js 2017-01-28 22:05:36 +02:00
dist add project setup with package.json, babel, rollup and build + deploy scripts 2017-01-29 03:20:29 +01:00
src Rename vanillaTilt.js to vanilla-tilt.js 2017-01-28 22:05:36 +02:00
.babelrc add project setup with package.json, babel, rollup and build + deploy scripts 2017-01-29 03:20:29 +01:00
.editorconfig add project setup with package.json, babel, rollup and build + deploy scripts 2017-01-29 03:20:29 +01:00
.gitattributes add project setup with package.json, babel, rollup and build + deploy scripts 2017-01-29 03:20:29 +01:00
.gitignore add project setup with package.json, babel, rollup and build + deploy scripts 2017-01-29 03:20:29 +01:00
build.js add project setup with package.json, babel, rollup and build + deploy scripts 2017-01-29 03:20:29 +01:00
index.html Fix text on landing page 2017-01-28 22:07:25 +02:00
LICENSE Initial commit 2017-01-27 20:32:50 +02:00
package.json add project setup with package.json, babel, rollup and build + deploy scripts 2017-01-29 03:20:29 +01:00
README.md Update README.md 2017-01-29 01:55:50 +02:00
yarn.lock add project setup with package.json, babel, rollup and build + deploy scripts 2017-01-29 03:20:29 +01:00

vanilla-tilt.js

Rewritten from Tilt.js. All copyright goes to https://github.com/gijsroge/tilt.js

A tiny requestAnimationFrame powered 60+fps lightweight parallax tilt effect without any dependencies. Tilt.js demo gif

####Take a look at the landing page for demo's.

Usage

<!DOCTYPE html>
<body>
    <div data-tilt></div> <!-- Tilt element -->
    <script src="vanilla-tilt.js"></script> <!-- Load vanilla-tilt.js library -->
</body>

Options

max:            20,     //maxTilt
perspective:    1000,   // Transform perspective, the lower the more extreme the tilt gets.
easing:         "cubic-bezier(.03,.98,.52,.99)",    // Easing on enter/exit.
scale:          1,      // 2 = 200%, 1.5 = 150%, etc..
speed:          300,    // Speed of the enter/exit transition.
transition:     true,   // Set a transition on enter/exit.
axis:           null,   // What axis should be disabled. Can be X or Y.
reset:          true    // If the tilt effect has to be reset on exit.

Events

const element = document.querySelector(".js-tilt");
VanillaTilt.init(element);
element.addEventListeners("tiltChange", callback);

Methods

const element = document.querySelector(".js-tilt");
VanillaTilt.init(element);

// Destroy instance
element.vanillaTilt.destroy();

// Get values of instance
element.vanillaTilt.getValues();

// Reset instance
element.vanillaTilt.reset();

Install

You can copy and include any of the following file:

TO DO (auto generate those files):

  • dest/vanilla-tilt.js ~ 6kb
  • dest/vanilla-tilt.min.js ~ 3.5kb
  • dest/vanilla-tilt.babel.js ~ 8.5kb
  • dest/vanilla-tilt.babel.min.js ~ 4.3kb

in your webiste.

(you can download them temporary from: https://github.com/micku7zu/vanilla-tilt.js/releases)