Fading a div when scrolling
Hello! Hope you're fine! I'm new to jquery. For a couple of hours ago I tried to make a script which fading a div when scrolling down. But I can't make it work. I want the div to fade out more, and more when scrolling. And when scroll back up, I want it to fade in again. Hope you can help me! Thankful for all help!
Div called fade_me
- <script src="jquery-1.9.1.js"></script>
- <script>
- function fade_div() {
- window_scroll = $(this).scrollTop();
- $('#fade_me').css({
- 'opacity' : 1-(window_scroll/100)
- });
-
- }
- </script>