JQuery Waypoint를 사용하여 왼쪽 탐색을 스크롤하고 있습니다. 꼬리말 앞에서 스크롤을 멈추게하려면 어떻게해야합니까?JQuery Waypoint Scroll Stop at Footer
<script type="text/javascript">
var $jq = jQuery.noConflict();
$jq(document).ready(function() {
$jq('.top').addClass('hidden');
$jq.waypoints.settings.scrollThrottle = 30;
$jq("#toc").waypoint(function(event, direction) {
$jq('.top').toggleClass('hidden', direction === "up");
if (direction === 'down') {
var cssObj = {'position' : 'fixed', 'top' : '3px', 'left' : '100px'}
}
else {
var cssObj = {'position' : 'absolute', 'top' : '3px', 'left' : '100px'}
}
$jq('#toc').css(cssObj);
},{
offset: '3'
});
});
</script>
코드를 게시 할 수 있습니까? 고맙습니다! – aje
@aje : 지금 작업 중입니다. 잠깐. – Purag
@aje : 완료했는지 확인하십시오. :) – Purag