godfather/contents/js/custom.js

27 lines
640 B
JavaScript
Raw Normal View History

2013-11-02 09:02:51 +02:00
jQuery(document).ready(function(){
var windowWidth = window.screen.width < (window.outerWidth ? window.screen.width : window.outerWidth);
var mobile = windowWidth < 500;
if(mobile)
{
jQuery(window).scroll(function() {
scroll_effect();
});
}
});
function scroll_effect() {
// Get the scroll position of the page
scrollPos = jQuery(this).scrollTop();
// Fade out the banner text
jQuery('.carousel-caption').css({
'margin-top' : -(scrollPos/3)+"px",
'opacity' : 1-(scrollPos/300)
});
2013-11-02 10:38:31 +02:00
if (scrollPos > 400)
2013-11-02 09:02:51 +02:00
{
jQuery('.middle').css({
2013-11-02 10:38:31 +02:00
'height': (scrollPos-250)/2+"px"
2013-11-02 09:02:51 +02:00
});
}
}