You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

vue-tilt.js

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-tilt.js

Add tilt-effect to your elements

1.1.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

Vue-Tilt.js

Vue-Tilt.js

Add Tilt-Effect to your elements, based on vanilla-tilt.js

Installation

Install package

npm install vue-tilt.js --save
// or
yarn add vue-tilt.js

Import to vue

import VueTilt from 'vue-tilt.js'
Vue.use(VueTilt)

Implement into your view

Simply add the vue-directive to any element within your vue-root-element

<div v-tilt>...</div>

Options

All options with defaults

{
    reverse:            false,  // reverse the tilt direction
    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.
    glare:              false   // if it should have a "glare" effect
    "max-glare":        1,      // the maximum "glare" opacity (1 = 100%, 0.5 = 50%)
    "glare-prerender":  false   // false = VanillaTilt creates the glare elements for you, otherwise
    // you need to add .js-tilt-glare>.js-tilt-glare-inner by yourself
}

Examples

Add options to your elements

<div v-tilt="{speed: 500, perspective: 1200}">...</div>

Keywords

vue

FAQs

Package last updated on 07 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts