Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9187527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:47:29+00:00 2026-06-17T19:47:29+00:00

I am trying to code a custom scroll bar in HTML. Something like <div

  • 0

I am trying to code a custom scroll bar in HTML.
Something like

<div class="demo">
    <div class="content">
       My content comes here
    </div>
    <div class="scrollbar">
       <div class="thumb"></div>
    </div>
</div>

I am trying to set height of the thumb dynamically with jquery.

But, unable to figure out the formula for the thumb size.
tried some thing like

$.scrollViewHeight = $('.demo').height();
$.contentHeight = $('.content').height();
$.thumbHeight = ($.scrollViewHeight / $.contentHeight) * $.scrollViewHeight;

$('.thumb').height($.thumbHeight);

but it doesn’t work.
Q1. What could be the formula to get the height of the thumb?

also i kept min-thumb size as 50px using css.
Q2. So, how do we calculate the speed of thumb in this case as content will be much more.

.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T19:47:30+00:00Added an answer on June 17, 2026 at 7:47 pm

    There’s of course more involved in writing your custom scrollbar, but this can get you started:

    var $container = $(".container"),
        $content = $(".content"),
        $scrollbar = $(".scrollbar"),
        $scrollbarHandle = $(".scrollbar-handle");
    
    /* To update scrollbar handle height (only) */
    
    var viewportRatio = $container.height() / $content.height();
    
    if (viewportRatio < 1) {
        $scrollbar.show();
    
        $scrollbarHandle.height(
            Math.max(
                50,
                Math.floor($scrollbar.height() * viewportRatio)
            )
        );
    } else {
        $scrollbar.hide();
    }
    

    The next steps would be:

    1. Two-way synchronization of content and scollbar handle scroll positions: Reposition handle when content is expanded, shrunk or scrolled by other means. Set scroll position of content when handle dragged.
    2. Pagination when the areas of the scrollbar falling outside the handle are clicked.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to reuse a small chunk of code inside a custom button class.
In my webpage I am trying to get a custom scroll bar. It is
I'm trying to create a custom ComboBox that behaves like the one in here:
I am trying to code a custom url_rewriter for squid. & also with using
I'm trying to create a custom drop down and using the code below it
I am having an issue converting type. I was trying code like this (minimal,
I'm trying to code a Linq MinBy extension method public static class Extensions {
I'm trying to inject some of my own code in the class construction process
I'm trying to add a scrollbar to a JList (which uses a custom data
I'm trying to run some custom code on a particular type of node when

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.