Skip to content

Instantly share code, notes, and snippets.

@adamrecsko
Last active August 29, 2015 14:03
Show Gist options
  • Save adamrecsko/89a5a4fe08bf4d2964e8 to your computer and use it in GitHub Desktop.
Save adamrecsko/89a5a4fe08bf4d2964e8 to your computer and use it in GitHub Desktop.
Scrollarea without scrollbars and prevent window scrolling like facebook do.
/*
Style for the scrollarea:
.scrollarea{
height:500px;
overflow: hidden;
}
*/
//scroll speed
var speed = 100;
$(".scrollarea").bind('mousewheel', function(e, d) {
$(this).scrollTop(this.scrollTop-(d*speed));
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment