Created
May 9, 2014 07:23
-
-
Save nowri/07c2546f917d38731cc9 to your computer and use it in GitHub Desktop.
body min-width以下になった時に、position:fixed;width:100%;のコンテナの表示に対応させる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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