1.0.6 • Published 2 years ago

siberian v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Siberian

A simple slider, built with vanilla Javascript.

Installation

npm install siberian

Usage

First, import runtime.js and siberian.js files from your node_modules folder.

It's recommended to have an HTML markup defined as below:

<div class="siberian">
  <div class="siberian-container">
    <div class="siberian-content">
      <div class="siberian-content-item" data-item="0">
        // insert content here!
      </div>
    </div>
  </div>
</div>

Obs.: The "data-item" attribute must be numbered for each item in your slider (0, 1, 2, 3, etcetera).

Then, in your main js file, create a sliderOptions object, with the following parameters:

const sliderOptions = {
	selector: '.siberian',
	selectorWrapper: '.siberian-content',
	breakpoint: 'max-width(480px)', // for mobile screens.
	amountOfItens: 1,
	hasArrows: true,
	hasDots: true
}

Then, use it as a argument for the siberian function.

  siberian(sliderOptions);

Dependencies

None!

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago