Last active
June 13, 2018 05:03
-
-
Save DevShahidul/28d951a0522de3fb961fba4c5338ec27 to your computer and use it in GitHub Desktop.
See example here >>> https://codepen.io/dudleystorey/pen/vHBAE and http://thenewcode.com/718/Rotating-Elements-With-Page-Scroll-In-JQuery of find in our LAM project which we did (Jun - 2018)
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
| $(window).scroll(function() { | |
| var theta = $(window).scrollTop() / 800 % Math.PI; | |
| $('#leftgear').css({ transform: 'rotate(' + theta + 'rad)' }); | |
| $('#rightgear').css({ transform: 'rotate(-' + theta + 'rad)' }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment