npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue2-simple-carousel

v0.3.22

Published

### Vue 2.x only

Downloads

98

Readme

vue2-simple-carousel 🎠

Vue 2.x only

Noticed a bug? Please report - https://github.com/Oleksii14/vue2-simple-carousel/issues

It is:

  1. Simple to use
  2. Touch-friendly
  3. Responsive
  4. Fully customizable
  5. Made with all common modes

Table of contents

  1. Installation
  2. Basic usage
  3. Props
  4. Slots
  5. Examples with slots
  6. Useful methods
  7. Useful data

Installation 💽

npm

npm i vue2-simple-carousel

yarn

yarn add vue2-simple-carousel

Basic usage 🏄

// <script>
import SimpleCarousel from "vue2-simple-carousel";

export default {
    ...
    components: {
        SimpleCarousel
    }
}

// <template>

<SimpleCarousel>
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
    <div>6</div>
</SimpleCarousel>

Props 💡

|Name|Type|Default|Description| |-------------|-------------|-----|-----| |auto-height|Boolean|false|Sets the auto-height css prop to wrapper |enable-buttons|Boolean|true|Enables carousel buttons |enable-dots|Boolean|false|Enables carousel dots |autoplay|Boolean|false|Enables autoplay |stop-autoplay-hover|Boolean|true|Stops the autoplay on carousel hover |go-back-on-end|Boolean|false|Moves carousel to the 1st slide after you reached the last slide |navigate-by-slide|Boolean|false|Navigates carousel by slide. (Carousel navigates by page by default) |draggable|Boolean|true|Enables carousel navigation by dragging |manual-initialize|Boolean|false|Disables the carousel (it will show just the items you passed) |speed|Number|3000|Sets the transition speed while navigate |autoplay-timeout|Number|1500|Sets the autoplay timeout time |items-per-view|Number|3|Sets the number of items per page (view) |dots-data|Object|dotsDataObject|Sets the number of items per page (view) |touch-options|Object|touchOptionsObject|Sets the number of items per page (view) |hide-buttons-on-start-end|Boolean|false|Hides the navigation buttons according to the slide/page number. If we are on the first slide/page -> prev button will be hidden. If we are on the last slide/page -> the next button will be hidden

touchOptionsObject:

// Supports all props from options object in https://www.npmjs.com/package/vue2-touch-events
{ swipeTolerance: 80 }

dotsDataObject:

{
  margin: "10px 0 0 0",
  padding: "0",
  dots: {
    size: 15,
    spacing: 5
  }
}

Emited events 😎

on-slide-change, on-page-change

Examples

<SimpleCarousel
    navigate-by-slide
    @on-slide-change="customSlideChangeHandle"
>
    ...
</SimpleCarousel>

or if you navigate by page:

<SimpleCarousel
    @on-page-change="customPageChangeHandle"
>
    ...
</SimpleCarousel>

Slots 🧭

prevButton, nextButton, customDots

Examples with slots 🖼

prevButton, nextButton

<SimpleCarousel ref="carousel">
    <!-- Those spans will be wrapped in <button> tags, so don't worry about accessibility 😉  -->
    <span slot="prevButton">Click to go back!</span>
    <span slot="nextButton">Click to go next!</span>
    <div>1</div>
    <div>2</div>
    <div>3</div>
</SimpleCarousel>

customDots

This slot is needed when you want to provide fully custom dots and avoid global styling:

template:

<SimpleCarousel ref="carousel">
    <div>1</div>
    <div>2</div>
    <div>3</div>
    
    <div class="custom-dots" slot="customDots">
        <button v-for="(dot, idx) in dots" @click="onDotClick(idx)">
            {{ dot }}
        </button>
    </div>
</SimpleCarousel>

script:

export default {
    ...
    data() {
        return {
            dots: 0
        }
    },
    methods: {
        onDotClick(pageIndex) {
            this.$refs.carousel.goToPage(pageIndex);
        }
    },
    mounted() {
        this.dots = this.$refs.carousel.pages;
    }
}

Useful methods 📖

prev - navigates to the prev page/slide (this relates to navigate-by-slide prop)

next - navigates to the next page/slide (this relates to navigate-by-slide prop)

onNextBySlide - navigates to the next slide

onNextByPage - navigates to the next page

onPrevBySlide - navigates to the prev slide

onPrevByPage - navigates to the prev page

initialize - initializes a carousel if it is disabled (if you passed manual-initialize prop as true)

destroy - destroys a carousel (only default slot will be shown)

Common example:

<button
    class="some-button-that-should-navigate-next" @click="$refs.carousel.onNextBySlide()"
>
    CLICK ME TO GO TO THE NEXT SLIDE
</button>

Example with initializing:

<SimpleCarousel manual-initialize>
    <div class="item">1</div>
    <div class="item">2</div>
    <div class="item">3</div>
</SimpleCarousel>

<button @click="$refs.carousel.initialize()">
    Initialize a carousel
</button>

Useful data 📖

translateValue - value on which the carousel is translated now

trackWidth - the width of the carousel track (changes on resize event)

carouselElementWidth - the width of the carousel element (changes on resize event)

currentSlideIndex / currentPageIndex - current indexes

itemsCount - the number of all passed nodes

pages - number of pages

maximumSlideIndex - the maximum index the carousel can be moved

itemsPerPage - the number of carousel items per page

disabled - the disabled state of the carousel

Example:

mounted() {
    console.log(this.$refs.carousel.pages)
}

Happy using!