Last active
August 29, 2015 14:16
-
-
Save czajkovsky/ed7025284b354f9e41fa to your computer and use it in GitHub Desktop.
netguru.co carrer paths
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
W sporym uproszczeniu wygląda to tak: | |
* Początkowo wysokość .main-line.active to 0px. | |
* Scrollując sprawdzam czy obecna wartość scrolla jest większa od górnej krawędzie .main-line | |
* Jeśli tak, to zwiększam wysokość .main-line.active | |
Punkty zaczepienia: | |
* http://api.jquery.com/scroll/ | |
* http://api.jquery.com/scrolltop/ |
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
- %w(static active).each do |state| | |
.main-line{ class: state } | |
// tutaj więcej contentu |
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
<div class='main-line static'> | |
<!-- Tutaj więcej contentu --> | |
</div> | |
<div class='main-line active'> | |
<!-- Tutaj więcej contentu --> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment