CSS HTML5/퍼블리싱 팁

퀵메뉴 스크롤 시 위치 지정하는 스크립트

웹디자이너 Kang Ji Yeon 2018. 4. 9. 09:39
반응형

        <script>

$(document).ready(function () {

$('.Right_quick').css('position', 'fixed');

$(window).scroll(function() {

var sclTop = $(this).scrollTop();

if (sclTop > 140)

{

$('.Right_quick').css('position', 'fixed').css('top', '30px');        

}

else 

{$('.Right_quick').css('position','fixed').css('top','290px');}

});

});

</script>

반응형