New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

vue-animate-scroll

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-animate-scroll

A small Vue component that provides an easy way to animate elements as they scroll into view.

latest
Source
npmnpm
Version
0.1.5
Version published
Maintainers
1
Created
Source

vue-animate-scroll

A small Vue component that provides an easy way to animate elements as they scroll into view.

Setup

npm i --save vue-animate-scroll
# or
yarn add vue-animate-scroll

Import into your main Javascript file

import Vue from 'vue'
import VueAnimate from 'vue-animate-scroll'

Vue.use(VueAnimate)

Usage

HTML

<div v-animate="'slide-up'">Hello</div>

# NB. A string literal (inner single-quotes) should be passed.

CSS

.animate {
  transition-delay: .1s
  transition-duration: .25s
  transition-timing-function: ease-in
}

.slide-up {
  transform: translateY(0)
}

.slide-up.animate-active {
  transform: translateY(-100px)
}

Options

Vue.use(VueAnimate, { animateClass: String, activeClass: String });
const options = {
  animateClass: String,  /* Class that gets added to all directive
                            elements. Default 'animate'. */
  activeClass: String,   /* Class that gets added when elements scrolls
                            into view. Default 'animate-active' */
}

Modifiers

ModifierDescription
repeatRepeats the animation every time it enters the window.
fadeAdds a .fade class so opacity can be applied on the transition

For example to use both repeat and fade.

<div v-animate.repeat.fade="'slide-up'">Hello</div>

Keywords

vue

FAQs

Package last updated on 29 Jan 2019

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