Go to file
Șandor Sergiu e25e393a8e Merge pull request #1 from soenkekluth/master
add project setup && build + deploy and release tasks
2017-01-30 20:40:28 +02:00
dest Add the dest files for version 1.0.1 2017-01-29 14:34:21 +02:00
dist merge vanilla-tilt.js 2017-01-29 21:19:23 +01:00
src Merge branch 'master' into master 2017-01-29 21:27:44 +01: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 bundle also minified versions 2017-01-29 21:03:03 +01:00
LICENSE Initial commit 2017-01-27 20:32:50 +02:00
package.json bundle also minified versions 2017-01-29 21:03:03 +01:00
README.md Update README.md 2017-01-29 19:47:50 +02:00
yarn.lock bundle also minified versions 2017-01-29 21:03:03 +01:00

vanilla-tilt.js

A smooth 3D tilt javascript library forked from Tilt.js (jQuery version).

View landing page (demos)

Usage

<body>
<div class="your-element" data-tilt></div>

<!-- at the end of the body -->
<script type="text/javascript" src="vanilla-tilt.js"></script>
</body>

Options

{
    max:            35,     // max tilt rotation (degrees)
    perspective:    1000,   // Transform perspective, the lower the more extreme the tilt gets.
    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.
    easing:         "cubic-bezier(.03,.98,.52,.99)",    // Easing on enter/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 (automatically build those):

in your webiste.

Credits

Original library: Tilt.js

Original library author: Gijs Rogé

License

MIT License