Code Monkey home page Code Monkey logo

vue-easy-slider's Introduction

Intro

vue-easy-slider is a slider component of Vue 2.x

Demo

demo

Install

$ npm i -S vue-easy-slider

Usage

Work on a Vue instance:

<slider animation="fade">
  <slider-item v-for="(i, index) in list" :key="index">
    <div :style="i">
      <p style="line-height: 280px; font-size: 5rem; text-align: center;">Page{{ index + 1 }}</p>
    </div>
  </slider-item>
</slider>
import { Slider, SliderItem } from 'vue-easy-slider'

new Vue( {
  el: 'body',
  data () {
    return {
      list: [
        { backgroundColor: '#3f51b5', width: '100%', height: '100%' },
        { backgroundColor: '#eee', width: '100%', height: '100%' },
        { backgroundColor: '#f44336', width: '100%', height: '100%' },
      ],
    }
  },
  components: {
    Slider,
    SliderItem
  }
} )

Props

Slider:

name type default description
width String auto The width of the slider
height String 300px The height of the slider
interval Number 3000 Delay of auto slider( auto option should be true )
speed Number 300 Speed of animation
auto Boolean true Autoplay
indicators 'center', 'left', 'right', false 'center' Show indicators on option position or hidden
control-btn Boolean true Show control button
animation String - { normal, fade } normal Change animation
init-index Number 0 Index of the initially active slide

Events

Slider:

name description $event
changeSlide Fires when the slide change $event.index
next Fires when the button for the next slide was pressed $event.original, $event.next
previous Fires when the button for the previous slide was pressed $event.original, $event.next

SliderItem:

name description $event
onClick Click event

Slots

SliderItem:

name description
default Item's content

usage:

<slider>
  <slider-item>
    <div>
      <img src="">
      <p></p>
      <button></button>
    </div>
  </slider-item>
</slider>

License

MIT

vue-easy-slider's People

Contributors

mubaidr avatar shhdgit avatar snovakovic avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.