GithubHelp home page GithubHelp logo

rwdslider's Introduction

Responsive Slider JS

RWD-Slider

v 0.0.2

Generate a responsive slideshow component in native JavaScript.

Features

  • Slider Responsive
  • Auto size items
  • Update size of items when "onResize"
  • Breakpoint for modify nbView
  • Css classes for state of arrows
  • Without jQuery

DEMO

Clone this repository and get a DEMO In CLI >

npm install gulp

HTML

This plugin have need a structure as like that :

<div id="wrapper">
	<a class="btn-prev"></a>
	<ul>
		<li>item #01</li>
		<li>[...]</li>
		<li>item #09</li>
	</ul>
	<a class="btn-next"></a>
</div>

JS

<script>
	new rwdSlider({
		wrapper : "#slider",
		nbView : 4,
        nbMove : 2
	});
</script>

Binding control

For button prev & next, just use this term in your choice of className. Ex : btn-next, BtnNext ...

Parameters

Name of parameter Type Default Description
wrapper String null Selector of wrapper passed at sizzle selector (Necessary)
container String ul Selector of content items of slider
item String li Selector of items
nbView Number 4 Number items visible
nbMove Number 2 Number items slide
breakpoint Object px:0, nb:0 Object contain breakpoint in px (max-width) and nbView Parameters

UseCase with breakpoint

If you should to modify the number of element you show, you can pass in parameter an object containing the limit of breakpoint and number of show item.

<script>
	new rwdSlider({
		wrapper : "#slider",
		nbView : 4,
        nbMove : 2,
        breakpoint : {
        	px:768,
        	nb:2
        }
	});
</script>

Roadmap

  • add mobile friendly mode
  • Add unit-tests for calcul position method
  • Breadcrum Automatic Generated
  • Add examples

Browsers

IE9+, Chrome, Firefox, Safari, Native Browser IOS & Android

Licence

2015 MIT-Licence

rwdslider's People

Contributors

gdias avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.