Skip to content

Instantly share code, notes, and snippets.

@phsantiago
Created April 26, 2016 21:53
Show Gist options
  • Save phsantiago/16d09365c0502886928e3d2569e582fa to your computer and use it in GitHub Desktop.
Save phsantiago/16d09365c0502886928e3d2569e582fa to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var _width = $('#logo').width();
var _min = 105;
function parallax(s){
width = _width - ($(window).scrollTop() / 0.5);
if( width > _min){
$('#logo').css('width', width + 'px');
}else{
$('#logo').css('width', _min + 'px')
}
}
$(window).scroll(parallax);
$(window).trigger('scroll');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment