SlideShow jQuery plugin source

I use this plugin for my slider

http://tympanus.net/codrops/2013/01/28/flipping-circle-slideshow/

Demo link: http://tympanus.net/Development/CircleFlipSlideshow/

The plugin is a decoration, but it does not seem to have the Auto SlideShow feature built into it. I am trying to understand and change the same, so that I can make it rotate automatically after a few seconds. I havent created a jQuery plugin before looking for some help to get started with the same.

The source of the plugin is here: http://pastebin.com/3vLfWAnc

+5
source share
1 answer

, jQuery jQuerys

,

, , :)

EDIT: , setInterval 207 :

  $navLeft.find( 'span' ).on( 'click.flipshow touchstart.flipshow', function() {
    self._navigate( $( this ), 'left' );
  } );
  setInterval(function() {
    self._navigate( $( this ), 'left' );
  },4000);

, .

+1

All Articles