- This topic is empty.
-
AuthorPosts
-
May 2, 2013 at 11:03 pm #44519
Anonymous
Inactivei’m working on this slider that slides div to the left or right. I want it to stop when there is no other div to go to next. How do i achieve that? Here is what i have for example http://codepen.io/Jarolin/pen/mlzJh
May 3, 2013 at 2:48 pm #133991Anonymous
InactiveNothing?
May 3, 2013 at 5:09 pm #134011Mottie
Member@Jarolin What makes it difficult to give you an answer is that slides are traditionally within a container and that container is positioned instead of the slides themselves, if you want to float the slides.
What the demo above does is position each slide separately. And also, because the slides aren’t wrapped, you can’t for example have 10 slides in a row, because extra slides would either wrap to the next line or make the document extend beyond the browser window (scroll bar to the right).
More traditional markup with overflow hidden would allow for that, [something like this](http://codepen.io/Mottie/pen/aunjE):
May 3, 2013 at 6:51 pm #134018CrocoDillon
Participant> What makes it difficult to give you an answer is that slides are traditionally within a container and that container is positioned instead of the slides themselves
This.
I would however keep track of the current index and for example go to left only `if (index > 0)` and go to right only `if (index < $('.field').length - 1)` or something (length from a var, this is just an example). You can then slide to that field using the same jQuery as I used here: http://codepen.io/CrocoDillon/pen/lozFt
@Mottie, your implementation comparing the position fails if you click the next button repeatedly, that’s why I like comparing to something that doesn’t change during the animation.May 3, 2013 at 8:58 pm #134021Anonymous
Inactive@CrocoDillon @Mottie These both work great. but i would want the user to navigate back and forth, Not just one way.
May 3, 2013 at 9:09 pm #134023CrocoDillon
ParticipantI guess you’re referring to my Pen, only linked that for the animate part ;p It was easier than creating a new Pen. The only difference with going back is you decrement the index instead of increment.
May 3, 2013 at 9:22 pm #134024Anonymous
Inactive@CrocoDillon Huh?. Sorry i’m kind of a Jquery noob and am not really sure what you meant by that.
May 3, 2013 at 9:30 pm #134025Mottie
MemberYeah, @CrocoDillon was right, I should have just used an index ;)
I’ve updated [my demo](http://codepen.io/Mottie/pen/aunjE).
May 4, 2013 at 12:31 pm #134055Anonymous
Inactive@Mottie Will i be able to add new panels and it will slide them normally too?
May 4, 2013 at 3:14 pm #134077Mottie
Member@Jarolin: with the update I just made, yes… it now resizes the `#insidewrapper` to fit all of the slides inside.
May 4, 2013 at 4:37 pm #134083Anonymous
Inactive@Mottie Thank’s for all your help. I applied the Jquery and it’s working great. http://reallycoolstuff.net/PROJECTS/Unica/index.html Although there is one problem. When i zoom out and navigate through the slides it delocates. and things get alittle weird. Is there a solution to this problem?
May 4, 2013 at 10:16 pm #134107Anonymous
InactiveIs there a way of fixing that or no?
May 4, 2013 at 10:26 pm #134108Mottie
MemberIt looks like the width of the slides are 1285px but the container is set to 95%… that’s why there is an inconsistency.
Now you see why it’s easier to use a plugin instead of writing your own.
To fix it you’ll need to get the window size and change the width of all of the slides, then bind to the window resize event, but make sure it is throttled, to re-adjust the slide sizes.
May 4, 2013 at 10:41 pm #134109Anonymous
Inactive@Mottie haven’t found an ideal plug-in for what i’m trying to do.
May 5, 2013 at 5:34 am #134124CrocoDillon
ParticipantIt appears to be a bug with jQuery animate only in Chrome: http://bugs.jquery.com/ticket/5565 … you can try to use jQuery just to set the `left` (and don’t use something like `left += width`, but keep a var keeping the current left value yourself) and use CSS transitions to handle the animation.
-
AuthorPosts
- The forum ‘CSS’ is closed to new topics and replies.