Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(function( $ ){
- // Set the URL of Post's/Page's featured image (if present, otherwise a default image) as background image for .singular-parallax-section
- $(".singular-parallax-section").css("background-image", "url('" + [SingularPlxBkgrdImg.src] + "')");
- // Enable parallax
- $(window).scroll(function(){
- if ( $(window).width() > 1024 ) {
- scrolltop = $(window).scrollTop()
- scrollwindow = scrolltop + $(window).height();
- $(".singular-parallax-section").css("backgroundPosition", "50% " + -(scrolltop/6) + "px");
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement