Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

org.webjars.bower:jrcarousel

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

org.webjars.bower:jrcarousel

WebJar for jrcarousel

  • 1.0.0
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

jRCarousel

jQuery Responsive Carousel - jRCarousel by Vinayak Rangnathrao Jadhav

######jRCarousel is a jQuery plugin for responsive carousel with modern effects and multiple options.

Features

  • Modern effects
  • Fullscreen Carousel
  • Tiny plugin (gzipped ~ 1.6kb, uncompressed ~ 4.8kb)
  • Infinite scroll
  • Multiple slideLayouts to maintain aspect ratio
  • Minimal configuration, easy to install
  • Useful public API for extending the functionalities
  • Large browsers support ( Internet Explorer(9+), Chrome, Firefox, Safari ..)

Installation

<!-- add jQuery if not already present in your project -->
<script type="text/javascript" 
src='https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js'></script>
<!-- add jRCarousel plugin -->
<script type="text/javascript" 
src="https://raw.githubusercontent.com/vinayakjadhav/jRCarousel/master/dist/jRCarousel.min.js">
</script>

#####Setup images source

var slides = [
	{src: 'http://lorempixel.com//1366/768'},
	{src: 'http://lorempixel.com//1366/761'},
	{src: 'http://lorempixel.com//1366/762'},
	{src: 'http://lorempixel.com//1366/763'},
	{src: 'http://lorempixel.com//1366/764'},
	{src: 'http://lorempixel.com//1366/765'},
	{src: 'http://lorempixel.com//1366/766'}
];

#####Minimal configuration with defaults

$('.jRCarouselGallery').jRCarousel({
					slides: slides
				});

#####Configuring all available options

$('.jRCarouselGallery').jRCarousel({
 	width: 800, 				/* largest allowed width */
	height: 356, 				/* largest allowed height */
	slides: slides, 			/* array of images source or gets slides by 'slide' class */
	slideLayout : 'contain',  	/* "contain"-fit as per to aspect ratio | "fill"-stretches to fill |  "cover"-overflows but maintains ratio */
	animation: 'scroll', 		/* slide | scroll | fade | zoomInSlide | zoomInScroll */
	animationSpeed: 400,    	/* animation speed in milliseconds */
	animationInterval: 4000,	/* Interval between transitions or per slide show time in milliseconds */
	autoplay: true,         	/* start playing Carousel continuously, pauses when slide is hovered */
	onSlideShow: show,			/* callback when Slide show event occurs */
	navigation: 'circles'		/* circles | squares */
});

#####Images source provided in javascript

<div class="jRCarouselGallery"></div>

#####Images source provided in template by adding class slide

<div class="jRCarouselGallery">
  <img class="slide" src="http://lorempixel.com//800/351" />
  <img class="slide" src="http://lorempixel.com//800/352" />
  <img class="slide" src="http://lorempixel.com//800/353" />
  <img class="slide" src="http://lorempixel.com//800/354" />
  <img class="slide" src="http://lorempixel.com//800/355" />
</div>

jRCarousel Example

jRCarousel

Public API

  • #####showSlide(slideIndex) : shows the slide specified by the slideIndex by running animation, the slideIndex starts from 0.

  • #####showPreviousSlide() : shows the previous slide from current slide by running animation

  • #####showNextSlide() : shows the slide specified by the slideIndex by running animation

  • #####getSlideByIndex(slideIndex) : returns the slide's jquery object specified by the slideIndex

  • #####getCurrentSlide() : returns the current slide's jquery object

  • Usage
var myJRCarousel = $('.jRCarouselGallery').jRCarousel({
				slides: slides
});

myJRCarousel.showSlide(0);
myJRCarousel.showPreviousSlide();
myJRCarousel.howNextSlide();
var slide = myJRCarousel.getSlideByIndex(1);
var currentSlide = myJRCarousel.getCurrentSlide();

FAQs

Package last updated on 30 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc