2017-11-21 18 views
0

phonegap에 사이드 메뉴를 만들고, 왼쪽으로 -400px 넓은 제한으로 드래그해야하며 오른쪽으로 400px 넓은 한도로 드래그해야합니다. 난 단지 부모 사이에 제한없이 드래그 할 알고있다 :jquery-ui에서 최대 드래그를 설정하는 방법

$("#draggable").draggable({ containment: "parent" }); 

또는


$("#draggable").draggable({ axis: "x" }); 

답변

0

당신은 0을 사용할 수 있습니다 containment 다음과 같은에서 경계 상자를 정의하는 :

$("#draggable").draggable({ 
    cursor: 'move', 
    //containment: "parent" 
    containment: [-400,0,400,$(document).scrollTop()+$(window).height()] 
}); 

Online Demo (fiddle)

+0

방법 측면 만 이동하려면? – Daniel