5월, 2014의 게시물 표시

jQuery 효과

1. 좌우매뉴 스와이프 - JQM http://demos.jquerymobile.com/1.4.2/transitions/panel-swipe-open/#demo-page http://labs.rampinteractive.co.uk/touchSwipe/demos/ 2.스크롤 끝 확인 http://inspiredjw.tistory.com/23 $(window).scroll( function () {      if ($(window).scrollTop() == $(document).height() - $(window).height()) {          alert( 'End of Window' );      } });​ . $( "#inside" ).scroll( function () {    var elem = $( "#inside" );    if ( elem[0].scrollHeight - elem.scrollTop() == elem.outerHeight())      {          alert( "End of Yellow" );      } }); . . . . . . .