6 lines
176 B
JavaScript
6 lines
176 B
JavaScript
|
let text = document.getElementById('text');
|
||
|
window.addEventListener('scroll', function(){
|
||
|
let value = window.scrollY;
|
||
|
text.style.marginBottom = value * 2 + '2px';
|
||
|
});
|