Skip to content

Instantly share code, notes, and snippets.

@nowri
Created May 9, 2014 07:23
Show Gist options
  • Select an option

  • Save nowri/07c2546f917d38731cc9 to your computer and use it in GitHub Desktop.

Select an option

Save nowri/07c2546f917d38731cc9 to your computer and use it in GitHub Desktop.
body min-width以下になった時に、position:fixed;width:100%;のコンテナの表示に対応させる
function runPosFixed(){
$(".js-pos-fixed").css("left", - Math.floor($(window).scrollLeft()) + "px");
}
$win.on("load scroll resize", function () {
runPosFixed();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment