JQuery Sortable and automatic scrolling

后端 未结 9 2255
走了就别回头了
走了就别回头了 2021-02-05 10:02

I am trying to get JQuery Sortable to work but I have run into a slight usability problem.

The list that I am trying to sort is quite large (about 200 items). If the

9条回答
  •  别跟我提以往
    2021-02-05 10:20

    I would take a look at the scroll, scrollSensativity, and scrollSpeed options.

    You can do something like:

    $("#sort").sortable({ scroll: true, scrollSensitivity: 100 });
    

    or

    $("#sort").sortable({ scroll: true, scrollSpeed: 100 });
    

    or even

    $("#sort").sortable({ scroll: true, scrollSensitivity: 100, scrollSpeed: 100 });
    

提交回复
热议问题