Questions tagged [custom-scrolling]

Questions about innovative ways to create scrolling for user interfaces.

Questions that should have this tag pertain to cutting edge solutions to scrolling user interfaces. A primary example would be https://plus.google.com
Stack overflow questions with a custom-scrolling issues are:

Editing / Drawing Polygon Scroll Issue. Google Maps v3.9 - No Documentation. Any advice?

GridView Scroll By one row

Continuously scrolling Gallery?

As the web gets more animated, more users will be searching for solutions on problems arising from custom scrolling issues for browsers, objects, and this is the place for them to ask questions about them.

109 questions
18
votes
1 answer

Scroll second child in AppBarLayout

I'm trying to obtain this effect where if the user scroll a RecyclerView a certain layout scroll up together with the recycler and disappear behind a Toolbar. A similar behavior could be obtained using the CoordinatorLayout, this would be possible…
14
votes
1 answer

window.scroll events triggering twice

No matter what method I use to detect scrolling on the page the event is triggered twice. Please see the code for the different methods I have tried. or
Iceman3000
  • 143
  • 1
  • 1
  • 7
11
votes
1 answer

Is scrollTop, and scrollLeft for overflow hidden elements reliable?

I accidentally discovered that scrollTop, and scrollLeft on an element work even when an element is overflow: hidden. Can this behaviour be relied on? Supposedly scrollTop, and scrollLeft are supposed to be zero for elements without scrollbars, and…
Quentin Engles
  • 2,744
  • 1
  • 20
  • 33
6
votes
2 answers

Android Google Map | Two finger scrolling

I am working with Google Map, My case is that I have a map fragment inside the ScrollView and I need to scroll the map only with two finger if user touches only one finger map should not work and normal Scroll View should work. This is what i tried…
6
votes
0 answers

Is it possible to attain diagonal scrolling using ScrollView and HorizontalScrollView?

I have a layout file having both ScrollView and HorizontalScrollView. And am able to scroll either in horizontal direction or vertical direction. Will it be possible to scroll diagonally?
6
votes
7 answers

Make perfect scrollbar visible by default

I am using perfect scrollbar for custom scroll bar. It is working fine. But the scrollbar is visible only when you mouse over on the container. How do I make this visible all the time? $('.container').perfectScrollbar(); Demo
user6725932
  • 333
  • 1
  • 3
  • 16
6
votes
4 answers

jQuery custom scrollbar and lazy load

I have container with Custom content scroller jQuery custom content scroller: This code: (function($){ $(window).load(function(){ $(".content").mCustomScrollbar({ scrollButtons: { enable: true }, mouseWheelPixels:…
Jan Fryauf
  • 61
  • 1
  • 4
5
votes
1 answer

TScrollbox MouseDown override

I created a Custom scrollbox derives from TScrollbox that works the same except that it will scrolls when dragging in the client area aside from its scrollbars. My problem now is i cannot Drag To Scroll when mouse is on a button or panel inside my…
XBasic3000
  • 3,418
  • 5
  • 46
  • 91
5
votes
1 answer

Android: Disable HorizontalScrollView end of scrolling edge

I mean that i want to get rid of the "end of scrolling indicator" that appears when the user try to overscroll the view:
5
votes
1 answer

mCustomScrollBar "scrollTo, divID" not working

I seem to be having a problem scrolling to an element using the ".mCustomScrollbar("scrollTo",divID)" function. I have a div (id="#wrapper") containing a lot of divs (anything up to 800 divs of height each 20px). I then add the mCustomScrollbar to…
user1005240
  • 285
  • 4
  • 15
5
votes
3 answers

js or Jquery - obtaining viewable area of scrollable div

I currently have a a scrollable div that is populated dynamically. I have a function that captures UpArrow and DownArrow keyPresses and changes the classes within the parent div to have one child selected at a time (basically this mimics a select…
BinarySolo00100
  • 1,005
  • 3
  • 12
  • 18
4
votes
2 answers

How do you automate scrolling Instagram DMs?

I'm trying to scrape my Instagram DMs (direct messages). However, I don't know how to automate scrolling down the column to get the additional usernames that messaged me. I've tried this, as well as the scrolling code listed here. However, neither…
shorttriptomars
  • 325
  • 1
  • 9
4
votes
1 answer

Performant Javascript Fixed Scrolling

I have read countless posts and rewritten code countless times, and I have found myself up against a wall. I am trying to overcome the limitation of not using CSS for fixed position of an element when scrolling a page, due to the container having…
3
votes
4 answers

How to implemented Nested ListView.builder in Flutter?

I have already gone through this post for nested scrolling but it is not the correct way according to me as explained in this video from the official flutter channel I want to achieve the below layout The list header like Claim requested…
BraveEvidence
  • 53
  • 11
  • 45
  • 119
3
votes
0 answers

swipe to dismiss in lazy list - accidental horizontal scrolling during vertical scrolling in jetpack compose

I’m trying to add swipe to dismiss to a LazyList. The default implementation of SwipeToDismiss will lead to accidental horizontal scrolling while trying to scroll vertically leading to accidental swipe to dismiss events. In vanilla android view…
1
2 3 4 5 6 7 8