Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vueui/transitions

Use Semantic-UI transitions as v-transition in Vue.js
https://github.com/vueui/transitions

Last synced: about 1 month ago
JSON representation

Use Semantic-UI transitions as v-transition in Vue.js

Awesome Lists containing this project

README

        

vueui-transitions ```v0.1.0```
================================

Use Semantic-UI transitions as v-transition in Vue.js

### Installation
```bash
npm install --save vueui-transitions
```

### Usage
```js
var Vue = require('vue');
var transitions = require('vueui-transitions');

Vue.use(transitions, {
duration: 700 // The duration of each animation, Default is 700ms
})
```

In your HTML you can use them like:
```html


Welcome to the home page



```

### Animations

This is the full list of all the available in-out animations:
```
var emphasis = [
'flash',
'shake',
'pulse',
'tada',
'bounce'
]

var appearance = [
'slide-up',
'slide-down',
'vertical-flip',
'horizontal-flip',
'fade',
'fade-up',
'fade-down',
'scale',
'drop',
'browse'
]
```

See the [example](/example) for a full example with more animations and Webpack as the build tool.