splide icon indicating copy to clipboard operation
splide copied to clipboard

Empty spae/gap after refresh and moving slider

Open Reg93 opened this issue 2 years ago • 0 comments

Checks

  • [X] Not a duplicate.
  • [X] Not a question, feature request, or anything other than a bug report directly related to Splide. Use Discussions for these topics: https://github.com/Splidejs/splide/discussions

Version

0.7.12

Description

Hello! Thank you for your work!

Have an issue with slider and i couldn't find similar problem in issues. I have request to make infinite vertical loop with centered slide.

What i wrote:

<Splide hasTrack={false} options={{ rewind: true, width: 300, type: 'loop', direction: 'ttb', height: '150px', perPage: 3, drag : 'free', focus : 'center', trimSpace: true }} className="swiper" > <SplideTrack> {swiperLenght.map((item, index) => ( <SplideSlide key={index} className="swiper-slide"> {item} </SplideSlide> ))} </SplideTrack> </Splide>

styles:

` .swiper { overflow: hidden; border: 1px solid grey; display: flex;

  .splide__slide{
    height: 40px;
    font-size: 36px;
  }

} `

What i see:

after refresh there are no numbers at all: image

after start move i see gaps on top and bottom: image

Help please to fix this. Respect

Reproduction Link

No response

Steps to Reproduce

copy my code

Expected Behaviour

infinite vertical loop with centered slide without empty spaces

Reg93 avatar Mar 28 '24 09:03 Reg93