Forum
Welcome, Guest
Please Login to access forum.
Re:Modify scroll to bottom (1 viewing) 
Go to bottom
TOPIC: Re:Modify scroll to bottom
#4253
Atlanta Internet Design
Junior Boarder
Posts: 25
User Offline
Re:Modify scroll to bottom Karma: 1  
Hi,

If anyone has been following this subject I finally found an answer to the question of how to control where the page up and page down can be modified

Code:

$( ".modpagecrollbtns.gobottom, .modpagecrollbtns.backtop" ).on( 'mouseup touchend', function( jqEvent ) { jqEvent.preventDefault(); jqEvent.stopPropagation(); // If a short press is detected, go to end scrolling value for the page if ( new Date().getTime() <= ( start + longpress ) ) { // Scroll to top if($(this).hasClass('backtop')) { $('html, body').animate({ scrollTop: -1000 }, $animationSpeed); } else { // Scroll to end $('html, body').animate({ scrollTop: 1000 }, $animationSpeed); } }
The key is the number 1000. Adjust it to adjust the scroll. Many many thanks to John for his help and putting up with me!!
 
Logged Logged  
  The administrator has disabled public write access.
      Topics Author
    emo
Modify scroll to bottom
Atlanta Internet Design
    thread link
thread linkthread link Re:Modify scroll to bottom
John Dagelmore
    thread link
thread linkthread linkthread link Re:Modify scroll to bottom
Atlanta Internet Design
    thread link
thread linkthread linkthread linkthread link Re:Modify scroll to bottom
John Dagelmore
    thread link
thread linkthread linkthread linkthread linkthread link Re:Modify scroll to bottom
Atlanta Internet Design
    thread link
thread linkthread linkthread linkthread linkthread linkthread link Re:Modify scroll to bottom
John Dagelmore
    thread link
thread linkthread linkthread linkthread linkthread linkthread linkthread link Re:Modify scroll to bottom
Atlanta Internet Design
    thread link
thread linkthread linkthread linkthread linkthread linkthread linkthread linkthread link Re:Modify scroll to bottom
John Dagelmore
    thread link
thread linkthread linkthread linkthread linkthread linkthread linkthread link Re:Modify scroll to bottom
Atlanta Internet Design
    thread link
thread linkthread linkthread linkthread linkthread linkthread linkthread linkthread link Re:Modify scroll to bottom
John Dagelmore
Go to top