window.addEventListener("scroll", function (event) { var scroll = this.scrollY; document.getElementById('blya').style.top = scroll; });
document.getElementById('blya').style.top = scroll+'px';
<style> body { height:2000px; } #blya{ position: fixed; } </style> <div id="blya">Блок</div>
document.getElementById('blya').style.top = scroll - 40 +'px';