All Projects → mystroken → cachu-slider

mystroken / cachu-slider

Licence: MIT license
🌈 🔆 Create animated full screen and content-fit sliders efficiently.

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to cachu-slider

Slendr
A responsive & lightweight (2KB gzipped) slider for modern browsers. [UNMAINTAINED]
Stars: ✭ 39 (+30%)
Mutual labels:  slideshow, slide, slider
Vue Infinite Slide Bar
∞ Infinite slide bar component (no dependency and light weight 1.48 KB)
Stars: ✭ 190 (+533.33%)
Mutual labels:  slideshow, slide, slider
Fullpage.js
fullPage plugin by Alvaro Trigo. Create full screen pages fast and simple
Stars: ✭ 32,974 (+109813.33%)
Mutual labels:  slideshow, slide, scrolling
React Fullpage
Official React.js wrapper for fullPage.js https://alvarotrigo.com/react-fullpage/
Stars: ✭ 707 (+2256.67%)
Mutual labels:  slideshow, scrolling
Hacker Slides
A small UI for building presentation slides from markdown markup
Stars: ✭ 316 (+953.33%)
Mutual labels:  slideshow, slide
React Presents
React slideshow framework
Stars: ✭ 454 (+1413.33%)
Mutual labels:  slideshow, slide
Embla Carousel
A lightweight carousel library with fluid motion and great swipe precision.
Stars: ✭ 1,874 (+6146.67%)
Mutual labels:  slideshow, slider
Multiscroll.js
multiscroll plugin by Alvaro Trigo. Create scrolling split websites. http://alvarotrigo.com/multiScroll/
Stars: ✭ 1,537 (+5023.33%)
Mutual labels:  slideshow, scrolling
Vue Fullpage.js
Official Vue.js wrapper for fullPage.js http://alvarotrigo.com/vue-fullpage/
Stars: ✭ 1,626 (+5320%)
Mutual labels:  slideshow, scrolling
Slider
Touch swipe image slider/slideshow/gallery/carousel/banner mobile responsive bootstrap
Stars: ✭ 2,046 (+6720%)
Mutual labels:  slideshow, slider
Pageable
Create full page scrolling web pages. No jQuery.
Stars: ✭ 199 (+563.33%)
Mutual labels:  slideshow, scrolling
Skitter
Skitter - Slideshow for anytime
Stars: ✭ 295 (+883.33%)
Mutual labels:  slideshow, slider
TW-Tamasha
Presentation and slideshow app using web technology based onTiddlywiki
Stars: ✭ 28 (-6.67%)
Mutual labels:  slideshow, slider
grav-plugin-lightslider
Grav LightSlider Plugin
Stars: ✭ 14 (-53.33%)
Mutual labels:  slideshow, slider
tweenslideshow
A simple slideshow using Tweenmax
Stars: ✭ 34 (+13.33%)
Mutual labels:  slideshow, slide
svelte-slidy
📸 Sliding action script
Stars: ✭ 211 (+603.33%)
Mutual labels:  slideshow, slider
Svelte Carousel
A super lightweight, super simple Carousel for Svelte 3
Stars: ✭ 144 (+380%)
Mutual labels:  slide, slider
Vue Awesome Swiper
🏆 Swiper component for @vuejs
Stars: ✭ 12,072 (+40140%)
Mutual labels:  slide, slider
Angular Fullpage
Official Angular wrapper for fullPage.js https://alvarotrigo.com/angular-fullpage/
Stars: ✭ 131 (+336.67%)
Mutual labels:  slideshow, scrolling
Keen Slider
The HTML touch slider carousel with the most native feeling
Stars: ✭ 3,097 (+10223.33%)
Mutual labels:  slideshow, slider

cachu-slider

npm bundle size npm npm GitHub last commit DUB

A standalone vanilla javascript library to create animated fullscreen or content-fit sliders on your web pages. It is inspired by the famous library fullpage.js by Alvaro Trigo.

The particularity of cachu-slider is that it's essentially based on Promises (ES6 feature), what is ideal for adding individual animations/transitions to each element of each slider section.

Simple Demo

Usage

1. Including the library

Install via npm : npm install cachu-slider
Or include dist files directly into your HTML document.

<link rel="stylesheet" type="text/css" href="cachu-slider.min.css">
<script type="text/javascript" src="cachu-slider.min.js"></script>

If you plan to use the library into a webpack project, you must read our advanced guide for including necessary files.

2. Required HTML Structure

<div class="cachu__container">

  <!-- All sections are wrapped inside .cachu__sections  -->

  <div class="cachu__sections">
    <section class="cachu__section">Some section</section>
    <section class="cachu__section">Some section</section>
    <section class="cachu__section">Some section</section>
  </div>

  <!-- End of section  -->
  <!-- Navigation will be dynamically added here (via JavaScript) -->
</div>

Each section will be defined with an element containing the cachu__section class. The active section by default will be the first section.

Slider elements should be placed inside a wrapper. The wrapper can not be the body element and it must have the cachu__container class.

This structure will generate, by default, a fullpage slider. If you want a content-fit slider rather, you should add to the wrapper cachu__container--content-fit class too.

<div class="cachu__container cachu__container--content-fit">

3. Instantiate the slider

Before initializing the slider, make sure that the DOM Content is already loaded.

// Now let's turn on our slider!

// 1. Set some options.
// 2. Instantiate the Slider with the DOM Element instance of the wrapper.
// 3. Run the slider !!

const options = {};
let slider = new Cachu(document.querySelector('.cachu__container'), options);
slider.run();

A more complete initialization with all options set could look like this:

// Complete options.

const options = {
  disableMouseEvents: false, // Disable mousewheel event listening.
  disableKeyboardEvents: false, // Disable keyboard event listening.
  disableTouchEvents: false, // Disable event listening on touchable device (Swipe).
  scrollingSpeed: 1000,  // The speed of the transition.
  scrollingLoop: true,  // Loop after reaching the end.
  navigationEnabled: true, // Enable navigation buttons
  navigationPosition: 'right'  // The Navigation's position
};

let slider = new Cachu(document.querySelector('.cachu__container'), options);
slider.run();

Notice: If you don't plan to use animations or transitions on some of the elements of some of your slides, you must ask yourself if you really need to use this library. ( You could consider using fullpage.js rather ).

Options

  • disableMouseEvents: boolean (default false) Disable listening mousewheel events. This feature may be interesting if you only want to scroll through navigation buttons.
  • scrollingSpeed: int (default 1000) Sets the speed of the transition between sections. This value must be greather than or equal to zero (>= 0).
  • scrollingLoop: boolean (default true) Tells the slider if it has to loop the scrolling after reaching the end of sections.
  • scrollingDirection: string (default vertical) The scrolling direction. Possible values are:
    • vertical
    • horizontal
  • fixSectionsHeight: boolean (default true) Tells the slider to set or not a same height to all sections. Only if the scrolling direction is horizontal, else this parameter is ignored.
  • navigationEnabled: boolean (default true) Tells the slider to display or not the navigation buttons.
  • navigationPosition: string (default right) Sets the position of the navigation (if enabled). Possible values are:
    • top: Fix navigation to the top.

    • right: Fix navigation to the right.

    • bottom: Fix navigation to the bottom.

    • left: Fix navigation to the left.

      Methods

      After instantiating the slider (var slider = new Cachu(...)), you get access to all these methods:

      run()

      You must call this method to run the slide. Else, the content will be hidden.

Reporting issues

If you find a bug or have compatibility issues, please open a ticket under issues section for this repository.

Contributing to cachu-slider

Have any suggestions or feedback?

  1. Let's use Cachu Slider on Trello
  2. Reach out @mystroken

Else, please see Contributing to cachu slider.

License

cachu-slider is an open sourced project using MIT license.

The credit comments in the JavaScript and CSS files should be kept intact (even after combination or minification).

(The MIT License)

Copyright (c) 2018 Mystro Ken [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].