Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

225
Views
How to slow down a slider script

The slider is too fast so I want to slow it down. I'm not a coder but I assume its in the sites javascript. Heres the site. http://lmbc.me/

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

I can see that the site is using Owl Carousel and the sliders are initialised in a file named custom.js

Sliders

According to the docs, I think you want to adjust the navSpeed option.

So initialisation of a slider may look like the following, making sure to adjust the navSpeed as required.

$('.owl-portfolio').owlCarousel({
  items: 4,
  loop: true,
  dots: true,
  nav: true,
  navSpeed: 1000, // ⭐️
  autoplay: true,
  margin: 30,
  responsive: {
    0: {
        items:1
    },
    700: {
        items:2
    },
    1000: {
        items:3
    },
    1600: {
        items:4
    }
  }
})
about 4 years ago · Juan Pablo Isaza Report

0

You can use smartSpeed or autoplaySpeed i hope your problem is solved now in this solution

$('.owl-portfolio').owlCarousel({
  items: 4,
  loop: true,
  dots: true,
  nav: true,
  autoplayTimeout:5000,
  smartSpeed:5000,
  autoplay: true,
  margin: 30,
  responsive: {
   0: {
     items:1
   },
   700: {
     items:2
   },
   1000: {
     items:3
   },
   1600: {
    items:4
  }
 }
})
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!