Created
October 16, 2014 11:47
-
-
Save nickcernis/1f5c444b878feeaaf18c to your computer and use it in GitHub Desktop.
How to modify the Parallax theme to add arrows on the homepage that autoscroll between sections
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
<!-- Add this to the bottom of your home section 1 widget in WordPress's Appearance > Widgets area--> | |
<a class="next-pane" data-goto=".home-section-2">↓</a> |
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
<!-- Add this to the bottom of your home section 2 widget in WordPress's Appearance > Widgets area --> | |
<a class="next-pane" data-goto=".home-section-3">↓</a> |
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
<!-- Add this to the bottom of your home section 3 widget in WordPress's Appearance > Widgets area --> | |
<a class="next-pane" data-goto=".home-section-1">↑</a> |
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
// Add this to the bottom of your /wp-content/themes/parallax-pro/js/parallax.js file | |
// The code should go above your closing jQuery brackets, like this: http://d.pr/i/1d3vl | |
$(".next-pane").click(function(e) { | |
var elementToScrollTo = $(this).data('goto'); | |
$('html, body').animate({ | |
scrollTop: $(elementToScrollTo).offset().top | |
}, 1000); | |
e.preventDefault(); | |
}); |
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
/* Add this to your theme's stylesheet at /wp-content/themes/parallax-pro/style.css */ | |
.next-pane { | |
cursor: pointer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment