admin管理员组

文章数量:1323323

I'm using JQuery UI Touch Punch, like I use it in this JSFiddle. I searched a lot of places to figure out what event and ui contains, but I wasn't able to find something about it.

Is there some kind of documentation that I'm missing? Or can someone explain me what Touch Punch offers and what the event and ui parameters contain?

I'm using JQuery UI Touch Punch, like I use it in this JSFiddle. I searched a lot of places to figure out what event and ui contains, but I wasn't able to find something about it.

Is there some kind of documentation that I'm missing? Or can someone explain me what Touch Punch offers and what the event and ui parameters contain?

Share edited Oct 24, 2021 at 11:43 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Jun 29, 2016 at 10:39 M ZeinstraM Zeinstra 1,9814 gold badges19 silver badges48 bronze badges 5
  • But have your read the purpose og it: touchpunch.furf. ??? – A. Wolff Commented Jun 29, 2016 at 10:52
  • @A.Wolff Yes I did – M Zeinstra Commented Jun 29, 2016 at 10:53
  • So, i'm not sure what is your question? – A. Wolff Commented Jun 29, 2016 at 10:53
  • It's pretty simple.. I know what functionalities it offers (as you can see in my fiddle), like: sortable, accordion etc.. But I want to know what you can do with those functionalities.. I figured you can add start and stop events and add delay and such, but is there more and what do event and ui contain? Nothing is explained about it on their site @A.Wolff – M Zeinstra Commented Jun 29, 2016 at 11:01
  • 2 So this is the same documentation as for jQuery UI one. See answer by TJ – A. Wolff Commented Jun 29, 2016 at 11:11
Add a ment  | 

1 Answer 1

Reset to default 5

jQuery UI Touch Punch is a library that just adds touch support to jQuery UI.

The documentation you are looking for is jQuery UI official site.

You can select the ponents to see a demo of them in action, and read their API documentation for further info. For example here is the API docs for sortable widget.

The arguments passed to callbacks and their properties might vary between widgets or the events that triggered them. The API docs usually contain such information. For example you can see what properties are present in sortable's start event arguments in start event documentation.

本文标签: javascriptWhat does Touch Punch JQuery UI offerStack Overflow