Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • Saguaros Moderator
    #1082850

    Hi @romolo,

    It seems to be an issue of JA ACM Slideshow Style-3, I’ve reported to the team for further checking, pls stay tuned.

    Regards

    Saguaros Moderator
    #1083621

    Hi @romolo,

    You can try with this tweak:
    1) Go to file: /templates/uber/acm/slideshow/tmpl/style-3.php
    2) At approx line 24:

    <div id="acm-slideshow-pro" data-interval="<?php echo $autoplay; ?>" class="carousel slide <?php if($helper->get('enable-fade-effect')): ?>carousel-fade<?php endif; ?>" data-ride="carousel">

    change it to:

    <div id="acm-slideshow-pro" data-interval="2000" class="carousel slide <?php if($helper->get('enable-fade-effect')): ?>carousel-fade<?php endif; ?>" data-ride="carousel">

    and change the ‘data-interval’ to your desired value, 2000 is milisecond value.

    3) And remove the script at the end of file:

    <?php if($autoplay != 'false'): ?>
    &lt;script&gt;
    (function($){
      $(document).ready(function(){
      var percent = 0, bar = $('.transition-timer-carousel-progress-bar'), crsl = $('#acm-slideshow-pro');
      function progressBarCarousel() {
        bar.css({width:percent+'%'});
       percent = percent +0.5;
        if (percent>100) {
            percent=0;
            crsl.carousel('next');
        }      
      }
      crsl.carousel({
          interval: false,
          pause: true
      }).on('slid.bs.carousel', function () {});var barInterval = setInterval(progressBarCarousel, 30);
      crsl.hover(
          function(){
              clearInterval(barInterval);
          },
          function(){
              barInterval = setInterval(progressBarCarousel, 30);
          })
    });
    
    })(jQuery);
    &lt;/script&gt;
    
    <?php endif; ?>
    romolo Friend
    #1085044

    Hi @saguaros,

    That worked a treat – Many thanks 🙂

    Saguaros Moderator
    #1085081

    You’re welcome!

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 2 voices, and was last updated by  Saguaros 6 years, 3 months ago.

The topic ‘How can we increase the speed of each slide on Slideshow: Style-3?’ is closed to new replies.