Questions tagged [infinite-carousel]

35 questions
18
votes
3 answers

Is it possible to implement a circular/infinite carousel using owl carousel?

I am using owl carousel and it works perfectly except it does not support circular/infinite scrolling. I did search for ideas on google and stackoverflow with no luck. Has anyone implemented circular/infinite scrolling in owl carousel?
Manu Goel
  • 430
  • 1
  • 3
  • 10
7
votes
2 answers

An infinite carousel with vanilla JavaScript

I am trying to build my own carousel with pure JavaScript. I'm struggling with picking up the most efficient way to add an infinite carousel option. For some reasons, every element (photo, generic object) must have an id The algorithm I see goes…
Denis Rozimovschii
  • 428
  • 1
  • 6
  • 19
5
votes
1 answer

Infinite carousel scrolling with overflow-x

I have a quick fiddle set up here. What I want is to be able to infinitely scroll to the left or right (carousel style) and just have the elements repeat (ie 'fall off' the right edge and re-appear on the left and vice versa). I'm able to capture…
Abdullah Jibaly
  • 53,220
  • 42
  • 124
  • 197
4
votes
1 answer

OwlCarousel 1.3.2 Infinite Loop

Yeah i have an old project with version 1.3.2. Basically the problem is when it reaches the end of the slides it does a roll back to 1st one -by seeing all previous in the process. I want after e.g. the 6th to go to the 1st as it was simply the 1st…
3
votes
2 answers

iPhone: Infinitely looping content inside UIScrollView

In my app, I'm designing a custom picker that allows the user to choose an item by scrolling horizontally and touching it. I need the buttons inside that view to loop around infinitely as the user scrolls in a certain direction. What would be the…
3
votes
1 answer

jQuery Animate callback not invoked after animation performed?

I'm using jQuery .animate() to create an infinite carousel. I've used .animate() before without any issues. This time however, the animation is not completing. It's a very simple animation, changing margin-left to a different value. The value…
VictorKilo
  • 1,839
  • 3
  • 24
  • 39
2
votes
0 answers

Infinite Carousel Clunky....at first

The jQuery infinite carousel works, but its jumpy. Upon clicking to 'scroll right', it leaps forward, then resets to its starting position. It then works normally for each click to scroll right after that. When one clicks the 'left scroll arrow', it…
user924377
2
votes
2 answers

How to create an infinite carousel effect with images in Windows Phone 7

In my Windows Phone 7 application, I have a list of objects with images associated with each one (about 40 total). I have one of the images on my main page, and a button which the user can click to randomly choose one of the objects, and then…
2
votes
3 answers

jQuery Carousel jumping to the wrong item

I have a perculiar problem with the :last and .before() method not inserting the code before the last element. [edited] I have come up with a new issue :/ The problem is (now that the
  • 's are in order), that the Carousel will now scroll…
  • Barrie Reader
    • 10,647
    • 11
    • 71
    • 139
    2
    votes
    3 answers

    How to create a carousel using viewpager and fragmentStatePager Adapter

    I am new to android and i am trying to create a carousel in android. My class structure are as follows public class PageViewActivity extends FragmentActivity { ViewPager pager; ... public void onCreate(Bundle savedInstanceState) { …
    1
    vote
    1 answer

    jquery fails to see items generated for infinite carousel

    I am trying to create a carousel that contains 7 days with items under each day. When the next button is pressed jquery looks for the last span element of the form DATE, grabs the value and passes it to the server to grab…
    Graeme
    • 467
    • 7
    • 15
    1
    vote
    1 answer

    React JS Infinite Carousel

    I'm building a portfolio app in React JS and one of my pages is an About Me page. I stumbled upon a youtube video that builds an infinite carousel using vanilla JavaScript, and during my initial testing it worked. However, when I navigate away from…
    Kevin G
    • 168
    • 2
    • 15
    1
    vote
    0 answers

    How can l make my React slider component infinite in the x axis?

    I've never built a React slider before and I'm struggling a bit with making it an infinite loop of slides. Currently there are two slides, but I'd like to make it so that the user can click the next/previous buttons and the slides are infinite,…
    Kayla
    • 165
    • 2
    • 4
    • 13
    1
    vote
    2 answers

    Infinite Carousel not loading properly in IE, works in Chrome, Safari, and FF

    Hey guys, I run a store on BigCartel.com. Recently I decided to incorporate a jQuery slider onto my store. I chose this rather than flash so that it would be compatible with Apple mobile devices for my customers. Unfortunately, I've run into some…
    1
    vote
    2 answers

    Most efficient endless loop in C# (carousel)

    Assuming a list of objects, each with an ID, what's the most efficient way of building a carousel, so that each object knows what its previous and next item is. The Last Item's previousId will link to the first item. The first item's previousId will…
    Armstrongest
    • 15,181
    • 13
    • 67
    • 106
    1
    2 3