Last active
October 29, 2018 20:16
-
-
Save thomasjbradley/99327f3da761caaa8a20a6919a47f262 to your computer and use it in GitHub Desktop.
A replacement for jQuery in the JavaScript & jQuery effects video playlist. https://www.youtube.com/playlist?list=PLWjCJDeWfDdfAAbxA-H5XHQlGoLICyHe_
This file contains 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
var sun = document.querySelector('.sun'); | |
window.addEventListener('scroll', function () { | |
var top = window.scrollTop / 3; | |
sun.style.transform = 'rotate(' + top + 'deg)'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment