Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] auto scroll jcoverflip…

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #30581
    coffeendonut
    Member

    Im trying to auto scroll jcoverflip it’s seems to fulfill my needs but im having trouble to make it auto scroll any help…


    jQuery( document ).ready( function(){
    jQuery( '#flip' ).jcoverflip({
    current: 2,
    beforeCss: function( el, container, offset ){
    return [
    $.jcoverflip.animationElement( el, { left: ( container.width( )/2 - 186 - 110*offset + 35*offset )+'px', bottom: '20px' }, { }

    ),
    $.jcoverflip.animationElement( el.find( 'img' ), { width: Math.max(80,100-20*offset*offset) + 'px' }, {} )
    ];
    },
    afterCss: function( el, container, offset ){
    return [
    $.jcoverflip.animationElement( el, { left: ( container.width( )/2 + 161 + 110*offset - 15*offset )+'px', bottom: '20px' }, { }

    ),
    $.jcoverflip.animationElement( el.find( 'img' ), { width: Math.max(80,100-20*offset*offset) + 'px' }, {} )
    ];
    },
    currentCss: function( el, container ){
    return [
    $.jcoverflip.animationElement( el, { left: ( container.width( )/2 - 90 )+'px', bottom: 0 }, { } ),
    $.jcoverflip.animationElement( el.find( 'img' ), { width: '256px' }, { } )
    ];
    },
    change: function(event, ui){
    jQuery('#scrollbar').slider('value', ui.to*25);
    }
    });


    jQuery('#scrollbar').slider({
    value: 50,
    stop: function(event, ui) {
    if(event.originalEvent) {
    var newVal = Math.round(ui.value/25);
    jQuery( '#flip' ).jcoverflip( 'current', newVal );
    jQuery('#scrollbar').slider('value', newVal*25);
    }
    }
    });
    });


Viewing 1 post (of 1 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.