1

I'm trying to apply a similar type of custom scroll bar into my website but I seem to be having some trouble.

Just want to know if this kind of custom scroll bar is complicated or easy to implement. This is the last obstacle in finishing my design. What are some suggestions or ideas for implementing this design?

Community
  • 1
  • 1
clestcruz
  • 1,081
  • 3
  • 31
  • 75
  • I'm using [**NiceScroll**](https://github.com/inuyaksa/jquery.nicescroll) plugin and it's really nice. - here you have [some demos](http://nicescroll.areaaperta.com/demo.html) – balexandre Aug 23 '13 at 12:39
  • 1
    Check out this post :) I still have it in my favourites. http://stackoverflow.com/questions/9251354/css-customized-scroll-bar-in-div – Rebelek Aug 23 '13 at 12:40

4 Answers4

0

There are lot of jQuery UI plugin available and you can do this easily. Check it here and choose one.

Deepak Biswal
  • 4,280
  • 2
  • 20
  • 37
0

it is pretty easy to implement you can google for custom scrollbars or you can use tinyscrollbar or this

Deep Sharma
  • 3,374
  • 3
  • 29
  • 49
0

There are many javascript scrollbar scripts. You can try this one: http://www.dyn-web.com/code/scroll/ -> looks like you can easily replicate the scrollbar from your screenshot using this one.

Jakub Malec
  • 146
  • 8
-1

You can try -webkit- scrollbar.Check this fiddle.Here is the code.

::-webkit-scrollbar {
width: 8px; height:8px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
background:#fff;
}
::-webkit-scrollbar-thumb {
background: rgba(139,233,38,0.8);
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
Hamza Dhamiya
  • 1,269
  • 1
  • 10
  • 17