window.onscroll = function() {parallax()}; function parallax() { // --- mi propio parallax var py = ~~(-document.body.scrollTop/3)+10; jQuery('#slider-portada .panel-row-style').css('background-position','50% ' + py +'px' ); } jQuery('a[href^="#"]:not([href="#"])').click( function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = jQuery(this.hash); target = target.length ? target : jQuery('[data-name=' + this.hash.slice(1) +']'); if (target.length) { jQuery('html, body').animate({ scrollTop: target.offset().top }, 1000); return false; } } });