Last active
August 29, 2015 14:03
-
-
Save adamrecsko/89a5a4fe08bf4d2964e8 to your computer and use it in GitHub Desktop.
Scrollarea without scrollbars and prevent window scrolling like facebook do.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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