Basic slideshow example

HTML Content1
HTML Content2
HTML Content3
HTML Content4
HTML Content5
HTML Content6
HTML Content7
HTML Content8
HTML Content9
HTML Content10
HTML Content11
HTML Content12
HTML Content13

Basic slideshow

$(function(){
    $('.slideshow').jocodeSlideshow({
        
        selector : '> .scroller > div > div',
        
        bt_first : '.first',
        bt_previous : '.previous',
        bt_play : '.play',
        bt_pause : '.pause',
        bt_resume : '.resume',
        bt_stop : '.stop',
        bt_next: '.next',
        bt_last : '.last',
        
        disabled_bt_class : 'disabled',
        
        auto_play : true,
        delay : 1000,
                   
        start_index : 0,
       
        fx : new $.JocodeFxSlideshow.HorizontalScroll({
            duration : 1000
        }),
        
        navigation : new $.JocodeNavigationSlideshow({
            
            selector : '> .navigation > div > .scroller > div >  a',
            
            selected_class : 'selected',
            scrolled_class : 'scrolled',
            
            bt_next: '.scroll_next',
            bt_previous : '.scroll_previous',
            bt_first: '.scroll_first',
            bt_last : '.scroll_last',
            
            fx : new $.JocodeFxNavigationSlideshow.HorizontalScroll()
        })
        
    });
});