????
| Current Path : /home2/morganrand/.trash/js_composer/assets/js/lib/ |
| Current File : /home2/morganrand/.trash/js_composer/assets/js/lib/deprecated.js |
if ( 'undefined' !== typeof(jQuery.fn.bxSlider) ) {
jQuery( '.bxslider' ).each( function () {
var $slider = jQuery( this );
$slider.bxSlider( $slider.data( 'settings' ) );
} );
}
if ( 'undefined' !== typeof(window.Swiper) ) {
jQuery( '.swiper-container' ).each( function () {
var $this = jQuery( this ),
my_swiper,
max_slide_size = 0,
options = jQuery( this ).data( 'settings' );
if ( 'vertical' === options.mode ) {
$this.find( '.swiper-slide' ).each( function () {
var height = jQuery( this ).outerHeight( true );
if ( height > max_slide_size ) {
max_slide_size = height;
}
} );
$this.height( max_slide_size );
$this.css( 'overflow', 'hidden' );
}
jQuery( window ).resize( function () {
$this.find( '.swiper-slide' ).each( function () {
var height = jQuery( this ).outerHeight( true );
if ( height > max_slide_size ) {
max_slide_size = height;
}
} );
$this.height( max_slide_size );
} );
my_swiper = jQuery( this ).swiper( jQuery.extend( options, {
onFirstInit: function ( swiper ) {
if ( 2 > swiper.slides.length ) {
$this.find( '.vc_arrow-left,.vc_arrow-right' ).hide();
} else if ( 0 === swiper.activeIndex && true !== swiper.params.loop ) {
$this.find( '.vc_arrow-left' ).hide();
} else {
$this.find( '.vc_arrow-left' ).show();
}
},
onSlideChangeStart: function ( swiper ) {
if ( 1 < swiper.slides.length && true !== swiper.params.loop ) {
if ( 0 === swiper.activeIndex ) {
$this.find( '.vc_arrow-left' ).hide();
} else {
$this.find( '.vc_arrow-left' ).show();
}
if ( swiper.slides.length - 1 === swiper.activeIndex ) {
$this.find( '.vc_arrow-right' ).hide();
} else {
$this.find( '.vc_arrow-right' ).show();
}
}
}
} ) );
$this.find( '.vc_arrow-left' ).click( function ( e ) {
e.preventDefault();
my_swiper.swipePrev();
} );
$this.find( '.vc_arrow-right' ).click( function ( e ) {
e.preventDefault();
my_swiper.swipeNext();
} );
my_swiper.reInit();
} );
}