Socket
Socket
Sign inDemoInstall

vue-textra

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-textra

Vue js text sliding plugin


Version published
Weekly downloads
54
decreased by-66.25%
Maintainers
1
Install size
28.3 kB
Created
Weekly downloads
 

Readme

Source

Textra Build Status

A Vue.js add-on to slide your text. demo

Installing

npm i -D vue-textra

Then inside your project, start using it:

import Vue from 'vue'
import App from './App.vue'
import Textra from 'vue-textra'

Vue.use(Textra);
new Vue({
  el: '#app',
  render: h => h(App)
})

To use inside browser:

<script src='https://cdn.jsdelivr.net/npm/vue-textra@latest/dist/textra.min.js'></script>

Then:

Vue.use(Textra);

Usage

Inside any of your components:

 <textra :data='words' :timer="4" filter="flash" />

And in your instance data:

//...
  data () {
    return {
      words: ["My text to show", "Great news here!", "Vue is great", "Sample Text"]
    }
  }
//...

Another example :

 <textra :data='words' :timer="3.1" :infinite='true' filter="left-right" />

This one will loop around for ever.

Props

data

Type : Array Description : Should be array of things you want to slide.


timer

Type : Number Description : Defines gap between each slide as second. Default : 2


filter

Type : String Description : Defines type of filter you want to use when sliding. Default : simple


infinite

Type : Boolean Description : Defines whether your slider should keep looping or not. Default : false

Filters

There are 9 types of filters available for now:

  • simple
  • bottom-top
  • top-bottom
  • right-left
  • left-right
  • press
  • scale
  • flash
  • flip

Keywords

FAQs

Last updated on 11 Nov 2019

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc