argyleink / gui-challenges

Components from the YouTube show GUI Challenges: accessible, responsive, adaptive and cross browser components.

Home Page:https://youtube.com/playlist?list=PLNYkxOF6rcIAaV1wwI9540OC_3XoIzMjQ

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scroll snap stop: always

vasilich6107 opened this issue · comments

Hi. Im passing your challenges. When I try the demo "1 at a time" I can still scroll through the middle item without stopping. This reproducible on all browsers - Chrome/FF/Safari. I have a trackpad and swipe from left to right side allows me to do this trick.

Any ideas why it's happening?

Screen.Recording.2023-05-13.at.12.45.48.mov

yep! the user isnt forced to stop during a gesture, it's not going to steal it from you. but if you fling, it will rest at the "always" stops.

so this is by design, to let users have fluid gestures while their pointer is down. scroll-snap-stop always is more like a strong suggestion OR will only always if the user has flung. from my testing, trackpad users are the ones with the most control in this scenario, where like they have the most surface area to scroll past stops marked as always stop.

Thanks for reply