Jump to content

Auto Scroll for Summary Blocks

Recommended Posts

Site URL: https://roncosta.com/

I'm using the script below to auto scroll and it works perfectly for the first summary block I have (header) but it doesn't auto scroll the second one on the page which are my testimonials.


Can anyone help and suggest ways to make my testimonials summary block also auto rotates?


Thanks!

 

<script>
window.onload = function() {
  var nextArrow = document.querySelector(".summary-carousel-pager-next");
  
  function clickNext() {
    nextArrow.click();
  }
 
  setInterval(clickNext, 4000);
};
</script>

Link to comment
5 hours ago, roncosta said:

Site URL: https://roncosta.com/

I'm using the script below to auto scroll and it works perfectly for the first summary block I have (header) but it doesn't auto scroll the second one on the page which are my testimonials.


Can anyone help and suggest ways to make my testimonials summary block also auto rotates?


Thanks!

 

<script>
window.onload = function() {
  var nextArrow = document.querySelector(".summary-carousel-pager-next");
  
  function clickNext() {
    nextArrow.click();
  }
 
  setInterval(clickNext, 4000);
};
</script>

You can try the following code 

<script>
  (function docReady(fn) {
      // see if DOM is already available
      if (document.readyState === "complete" || document.readyState === "interactive") {
          // call on next available tick
          setTimeout(fn, 1);
      } else {
          document.addEventListener("DOMContentLoaded", fn);
      }
  })(() => {
      if ( window.location == window.parent.location ) {
        const reelControls = document.querySelectorAll('.sqs-gallery-controls [aria-label="Next"]');
        reelControls.forEach(reelControl => {
            (function reelTimer() {          
                  setTimeout(() => {
                    reelControl.click();
                    reelTimer();
                  }, 4000);  // change this value to change the speed
            })();       
        })
      }
  });
</script>

You can apply this code to auto-scroll for auto-blocks on your site. Kindly remove old script and apply this.

Let me know how it works on your site

Press 👍 or mark this answer as solution to help another one too

 

Edited by bangank36

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
10 hours ago, bangank36 said:

You can try the following code 

<script>
  (function docReady(fn) {
      // see if DOM is already available
      if (document.readyState === "complete" || document.readyState === "interactive") {
          // call on next available tick
          setTimeout(fn, 1);
      } else {
          document.addEventListener("DOMContentLoaded", fn);
      }
  })(() => {
      if ( window.location == window.parent.location ) {
        const reelControls = document.querySelectorAll('.sqs-gallery-controls [aria-label="Next"]');
        reelControls.forEach(reelControl => {
            (function reelTimer() {          
                  setTimeout(() => {
                    reelControl.click();
                    reelTimer();
                  }, 4000);  // change this value to change the speed
            })();       
        })
      }
  });
</script>

You can apply this code to auto-scroll for auto-blocks on your site. Kindly remove old script and apply this.

Let me know how it works on your site

Press 👍 or mark this answer as solution to help another one too

 

This works perfectly, thanks!

Link to comment
  • 1 year later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.