ํ์ด์ง ๋ด ์ฐ์ธก ํต๋ฐฐ๋ ๋ง๋ค๊ธฐ
ยท
html, css
๋๋ฉ ์์
์ ํ๋ฉด ํ์ํ ์ฐ์ธก ํต๋ฐฐ๋ .quick_pos { position: relative; top: 100px; min-width: 1100px; width: 100%; } .quick_pos .quick { position: absolute; top: 100px; left: 50%; z-index: 60; margin-left: 650px; } .quick_pos .quick.fixed { position: fixed; } @media all and (max-width: 1660px) { .quick_pos { display: none; } } $(window).scroll(function () { let quickPos = $('.quick_pos').offset().top; let winPos..