반응형
<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>
반응형