Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(function( $ ){
- $('#main-nav-search-link').click(function(){
- $('.search-div').show('slow');
- });
- $("*", document.body).click(function(event){
- // event.stopPropagation();
- var el = $(event.target);
- var gsfrm = $(el).closest('form');
- if(el.attr('id') !='main-nav-search-link' && el.attr('role') != 'search' && gsfrm.attr('role') != 'search'){
- $('.search-div').hide('slow');
- }
- });
- // Set the URL of Page's featured image as background image for .singular-parallax-section
- $(".singular-parallax-section").css("background-image", "url('" + [SingularPlxBkgrdImg.src] + "')");
- // Enable parallax
- $(window).scroll(function(){
- 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