Fixes issues #7298 #7956 #6916 when slidesOffsetBefore & slidesOffsetAfter are combinated with centeredSlides, slidesPerView & loop#8038
Merged
nolimits4web merged 2 commits intonolimits4web:masterfrom Sep 11, 2025
Conversation
… slidesOffsetBefore & slidesOffsetAfter work in combination with centeredSlides, slidesPerView & loop
Owner
|
t0ggles-create swiper |
|
Task nolimits4web/SWIPER-169 was created |
|
Task nolimits4web/SWIPER-169 status changed to Done |
Owner
|
Merged, thank you! |
Contributor
Author
With this fix point 2 should be resolved. But make sure to set the values for |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

This PR fixes several issues when slidesOffsetBefore & slidesOffsetAfter are combined with other settings.
Like in #7298 , #7956 and #6916
For all the below examples the base config contains:
1. Less than 2 slides were visible within the fading offsets
Before PR:
current.mp4
After PR:
fix.mp4
2. With
loop: truethe previous slides in the loop was missingBefore PR:
current-with-loop.mp4
After PR:
fix-with-loop.mp4
3. With
centeredSlides: truethe current slide is not centered within the offsetsBefore PR:
current-with-centered-slides.mp4
After PR:
fix-with-centered-slides.mp4
4. With
centeredSlides: true, loop: true(all configuration options and bugs combined)Before PR:
current-with-loop-and-centered-slides.mp4
After PR:
fix-with-loop-and-centered-slides.mp4