Questions tagged [smooth-scrolling]

Smooth Scrolling is a technique which reduces the sudden jumps in display while scrolling. The content will appear to seamlessly flow in and out of the screen as you scroll. Many browsers ship with it, but it can also be implemented by websites.

967 questions
-2
votes
1 answer

SmoothDivScroll give me a blank div

I am using the plug-in "Smooth Div Scroll 1.2". In my website I notice that when I scroll to the last post appears another empty/blank one. It seems to be a problem with the multiple container divs that I'm using to format the info inside of the…
fecapeluda
  • 133
  • 1
  • 6
  • 20
-2
votes
1 answer

How to do smooth scrolling in unity

Problem The zoom I have is not smooth, I want to implement smooth scrolling. Code private void Zoom(float zoomDiff) { if (zoomDiff != 0) { mouseWorldPosStart = Camera.main.ScreenToWorldPoint(Input.mousePosition); …
-2
votes
1 answer

collapse and expand view beside listview

I have a custom listView the xml code of each row is:
mozhi jafr
  • 69
  • 2
  • 10
-2
votes
1 answer

jquery smooth scroll on click (both directions, down and up)

I have a basic script that scrolls smoothly to anchored links when the user clicks on them. My problem is that the smooth scroll only seems to work one way, when I click on one of the "go to top" links, the page just jumps... $(function(){ // Smooth…
Andreas
  • 21
  • 1
  • 4
-2
votes
1 answer

How to implement smooth scrolling on a webpage?

I want to implement smooth scrolling on my web page. I'm not sure how to do it, either by overriding normal mouse scrolling or maybe there's another way. What I want to achieve is shown e.g. here. Try to scroll through the page.
randomuser2
  • 107
  • 10
-2
votes
1 answer

How can i make a smooth scrolling effect

Hi guys iam currently making a new portfolio and i encoutered a nice scrolling effect on the following website. https://www.astralgameservers.com/ Does anyone know how i could make a effect like this? If so please tell me :D I thought this was the…
user3600204
  • 43
  • 1
  • 1
  • 4
-3
votes
1 answer

JS Smooth Scrolling on Load interferes with Smooth Scrolling on Click

I'm new to JS, trying to make the following code work so that the homepage automatically scrolls on load and anchor links on other pages scroll smoothly on click...