Last active
February 4, 2019 07:35
-
-
Save mihailsitnic/06d9bdb09b40173287d0add26e5895c7 to your computer and use it in GitHub Desktop.
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
'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