jquery anchor(앵카) 구현하기
마스터욱
0
33
0
0
2019-06-05 22:46:08
<a href="#resbox" id="resbox"></a>
<script type="text/javascript">
$(document).ready(function(){
$('a[href*=#]').on('click', function(e) {
$('html, body').animate({ scrollTop: $($(this).attr('href')).offset().top}, 500, 'linear');
e.preventDefault();
});
$("#resbox").trigger("click");
});
</script>