https://github.com/edenreich/responsive-slider-jquery-plugin
This plugin allow you to create a responsive plugin on your website, you may pass it array of Images Paths and it will display them on that slider. You can also create multiple sliders on the same page. Enjoy :)
https://github.com/edenreich/responsive-slider-jquery-plugin
Last synced: 4 months ago
JSON representation
This plugin allow you to create a responsive plugin on your website, you may pass it array of Images Paths and it will display them on that slider. You can also create multiple sliders on the same page. Enjoy :)
- Host: GitHub
- URL: https://github.com/edenreich/responsive-slider-jquery-plugin
- Owner: edenreich
- Created: 2016-10-21T20:38:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-02T08:39:23.000Z (over 8 years ago)
- Last Synced: 2025-01-16T16:42:50.507Z (9 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Responsive Slider jQuery Plugin
This plugin allow you to create a responsive plugin on your website, you may pass it array of Images Paths and it will display them on that slider. You can also create multiple sliders on the same page. Enjoy :)##How To Use
first you need to choose an element on the DOM. For instance if you have an element with class called 'slider',
you will call it like so:
```javascript
$('.slider').Slider({});
```##Available Options
you can pass an options as json object to the $('.slider').Slider(); plugin.
example:
```javascript
$('.slider').Slider({
'available_settings': 'my_settings'
});
```if you choose to set the settings globally to all sliders that are on the DOM just use the child object called Settings like so:
```javascript
$('.slider').Slider.settings = {
'slideTime': 2000,
'slideSpeed': 1000,
'images': [],
'autoSlide': true,
'withButtons': false,
'withSteps': false,
};
```