Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lock web browser scroll while swiping the carousel (on mobile) #294

Open
fernandotimm opened this issue Aug 16, 2020 · 3 comments
Open

Lock web browser scroll while swiping the carousel (on mobile) #294

fernandotimm opened this issue Aug 16, 2020 · 3 comments

Comments

@fernandotimm
Copy link

Hi guys,

I noticed that the web browser scroll is not locked while using the carousel on mobile devices.
Maybe that could be another optional attribute.

Suggested implementation:

I fixed my case adding touch-action:pan-y to the horizontalSlider so the scrolling of the browser doesn't affect my experience of using the carousel.

//src/Slider/Slider.scss
.horizontalSlider {
  ...
  touch-action: pan-y;
  ...
}

I suggest adding it as an optional boolean attribute similar.

Teachability, Documentation, Adoption, Migration Strategy:

It looks like this is a common practice.
Reference: https://developer.mozilla.org/pt-BR/docs/Web/CSS/touch-action
Another common pattern is that of an image carousel which uses pointer events to handle horizontal panning, but doesn't want to interfere with vertical scrolling or zooming of the document.

.image-carousel {
  width: 100%;
  height: 150px;
  touch-action: pan-y pinch-zoom;
}

You can also check the carousels from airbnb (on a mobile device) to see the behavior I mentioned.
https://www.airbnb.com.br/s/all?refinement_paths%5B%5D=%2Fplaylists%2F40319

@stale
Copy link

stale bot commented Aug 29, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale Issues that became stale label Aug 29, 2020
@stale
Copy link

stale bot commented Sep 2, 2020

This issue has been automatically closed becuase it has not had recent activity.

@stale stale bot closed this as completed Sep 2, 2020
@tim-steele
Copy link
Contributor

@fernandotimm Could you open a pull request with the suggested changes?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants