You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Options for the {@link JQuery.transfer | transfer} method.
1035
+
*/
1036
+
interfaceTransferOptions{
1037
+
/**
1038
+
* The target of the transfer effect.
1039
+
*/
1040
+
to: string|Element|ArrayLike<Element>;
1041
+
/**
1042
+
* A class to add to the transfer element, in addition to `ui-effects-transfer`.
1043
+
*/
1044
+
className?: string|null;
1045
+
/**
1046
+
* A string or number determining how long the animation will run. The strings "fast" and "slow" can be supplied to indicate durations of 200 and 600 milliseconds, respectively. The number type indicates the duration in milliseconds.
1047
+
* @default 400
1048
+
*/
1049
+
duration?: string|number;
1050
+
/**
1051
+
* A string indicating which easing function to use for the transition.
0 commit comments