Skip to content

Instantly share code, notes, and snippets.

@akkijp
Last active November 4, 2015 08:15
Show Gist options
  • Save akkijp/7b3ede55a5ca0c59ee8d to your computer and use it in GitHub Desktop.
Save akkijp/7b3ede55a5ca0c59ee8d to your computer and use it in GitHub Desktop.
windowの幅を狭くしたときに、window positionが中心になりながら狭くなっていくスクリプト
$(function(){
var $window = $(window),
$document = $(document);
$(window).on('resize', function(){
var wwidth = $window.width(),
dwidth = $document.width();
(wwidth < dwidth) && $document.scrollLeft( (dwidth - wwidth)/2 )
});
$(window).trigger('resize');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment