Skip to content

Instantly share code, notes, and snippets.

@mihailsitnic
Last active February 4, 2019 07:35
Show Gist options
  • Save mihailsitnic/06d9bdb09b40173287d0add26e5895c7 to your computer and use it in GitHub Desktop.
Save mihailsitnic/06d9bdb09b40173287d0add26e5895c7 to your computer and use it in GitHub Desktop.
'use strict'
const element = document.getElementById('element')
window.onscroll = () => {
const yPos = window.pageYOffset;
// Основные операторы (+ - / *) https://learn.javascript.ru/operators
element.style.setProperty('top', yPos / 2 + 'px');
}
/*
//css https://developer.mozilla.org/ru/docs/Web/CSS/--*
#element {
position: absolute;
--top: 0;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment