Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richard1320/bare-bones-slider
Bare Bones Slider is a jQuery slider that is very flexible.
https://github.com/richard1320/bare-bones-slider
css css-animations css3 css3-animations jquery jquery-plugin jquery-slider
Last synced: 19 days ago
JSON representation
Bare Bones Slider is a jQuery slider that is very flexible.
- Host: GitHub
- URL: https://github.com/richard1320/bare-bones-slider
- Owner: Richard1320
- Created: 2013-03-06T03:43:30.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-03-28T01:23:06.000Z (over 2 years ago)
- Last Synced: 2024-10-03T02:46:32.503Z (about 1 month ago)
- Topics: css, css-animations, css3, css3-animations, jquery, jquery-plugin, jquery-slider
- Language: JavaScript
- Size: 1.81 MB
- Stars: 8
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Bare-Bones-Slider
=================Description: jQuery slider with little bloat but lots of customization.
Author: Richard Hung
More documentation and examples: http://www.bbslider.com
Key Features
--------------------* Carousel to show multiple slides simultaneously
* Uses CSS3 transitions with advanced easing
* Mask image for custom animations
* Allows you to make your own pagination and controls
* Public methods that you can call outside of the plugin
* Variables can be retrieved at any time
* Touch controls for phonesHow to Use
--------------------Bare Bones slider has a .js and a .css file in addition to the jQuery library.
```
```
Create a container for the slider and children for the panels.
```
```Call the slider after the HTML markup and required files.
```
$('.slider').bbslider({
auto: true,
timer: 3000,
loop: true
});
```