| Server IP : 69.39.225.240 / Your IP : 216.73.216.138 Web Server : Apache System : Linux bronze7.serverhost.net 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : reademotions ( 1074) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/reademotions/www/wp-content/plugins/bb-plugin/modules/content-slider/includes/ |
Upload File : |
(function($) {
<?php if ( isset( $settings->shuffle ) && '1' === $settings->shuffle && ! FLBuilderModel::is_builder_active() ) : ?>
$.fn.randomize = function(childElem) {
return this.each(function() {
var $this = $(this);
var elems = $this.children(childElem);
elems.sort(() => Math.random() - 0.5)
$this.detach(childElem)
for(var i=0; i < elems.length; i++)
$this.append(elems[i])
});
}
$('.fl-node-<?php echo $id; ?> .fl-content-slider-wrapper').randomize('.fl-slide');
<?php endif; ?>
$(function() {
var sliderIndex = 'undefined' === typeof FLBuilder ? false : FLBuilder.getSandbox('sliderIndex'),
autoPlay = <?php echo $settings->auto_play; ?>,
dots = <?php echo $settings->dots; ?>;
// display slider immediately if not editing a specific one
if (false === sliderIndex) {
$('.fl-node-<?php echo $id; ?> .fl-content-slider-wrapper').css('opacity', '1');
}
var slider = $('.fl-node-<?php echo $id; ?> .fl-content-slider-wrapper').delay(1000).bxSlider({
adaptiveHeight: true,
startSlide: sliderIndex ? sliderIndex : 0,
auto: autoPlay && false === sliderIndex ? true : false,
autoHover: <?php echo ( $settings->auto_hover ) ? 'true' : 'false'; ?>,
autoControls: <?php echo ( $settings->play_pause ) ? 'true' : 'false'; ?>,
pause: <?php echo $settings->delay * 1000; ?>,
mode: '<?php echo $settings->transition; ?>',
speed: <?php echo $settings->speed * 1000; ?>,
controls: false,
infiniteLoop: <?php echo $module->is_loop_enabled(); ?>,
pager: dots && false === sliderIndex ? true : false,
video: true,
onSliderLoad: function(currentIndex) {
// display slider after loading if editing a specific one
if (false !== sliderIndex) {
$('.fl-node-<?php echo $id; ?> .fl-content-slider-wrapper').css('opacity', '1');
}
$('.fl-node-<?php echo $id; ?> .fl-content-slider-wrapper').addClass('fl-content-slider-loaded');
// Remove video sources
$('.fl-node-<?php echo $id; ?> iframe').each( function(){
var src = $( this ).attr( 'src' );
$( this ).attr( 'data-url', src );
if ( ! $( this ).is( ':visible' ) || 0 === $( this ).parents( '.fl-slide-0:not(.bx-clone)' ).length ) {
$( this ).attr( 'src', '' );
}
});
/* if slide 0 contains a video and it is set to auto play, then play */
$('.fl-slide-0:not(.bx-clone) video[autoplay]').trigger('play');
},
onSlideBefore: function(ele, oldIndex, newIndex) {
this.stopAuto( true );
$('.fl-node-<?php echo $id; ?> .fl-content-slider-navigation a').addClass('disabled');
$('.fl-node-<?php echo $id; ?> .bx-controls .bx-pager-link').addClass('disabled');
<?php if ( $settings->auto_play ) : ?>
this.startAuto( true );
<?php endif; ?>
},
onSlideAfter: function( ele, oldIndex, newIndex ) {
var prevSlide = $( '.fl-node-<?php echo $id; ?> .fl-slide-' + oldIndex + ':not(.bx-clone)'),
newSlide = $( '.fl-node-<?php echo $id; ?> .fl-slide-' + newIndex + ':not(.bx-clone)');
// Swap autoplay video sources
if ( newSlide.find( 'iframe:visible').length ) {
newSlide.find( 'iframe:visible').each(function(){
var src = $( this ).attr( 'data-url' );
$( this ).attr( 'src', src );
});
}
if ( prevSlide.find( 'iframe:visible').length ) {
prevSlide.find( 'iframe:visible').each(function(){
var src = $( this ).attr( 'src' );
$( this ).attr( 'src', '' );
});
}
$('.fl-node-<?php echo $id; ?> .fl-content-slider-navigation a').removeClass('disabled');
$('.fl-node-<?php echo $id; ?> .bx-controls .bx-pager-link').removeClass('disabled');
/* Pause and play videos if autoplay */
if ( prevSlide.find( 'video').length ) {
prevSlide.find( 'video').trigger( 'pause' );
}
$( '.fl-node-<?php echo $id; ?> .fl-slide-' + newIndex + ':not(.bx-clone)').find('video[autoplay]').trigger('play')
}
});
// Store a reference to the slider.
slider.data('bxSlider', slider);
<?php if ( $settings->arrows ) : ?>
$('.fl-node-<?php echo $id; ?> .slider-prev').on( 'click', function( e ){
e.preventDefault();
slider.stopAuto( true );
slider.goToPrevSlide();
<?php if ( $settings->auto_play ) : ?>
slider.startAuto( true );
<?php endif; ?>
} );
$('.fl-node-<?php echo $id; ?> .slider-next').on( 'click', function( e ){
e.preventDefault();
slider.stopAuto( true );
slider.goToNextSlide();
<?php if ( $settings->auto_play ) : ?>
slider.startAuto( true );
<?php endif; ?>
} );
<?php endif; ?>
});
})(jQuery);