return as(Effects).fadeOut(millisecs, f);\r
}\r
\r
+ /**\r
+ * Toggle the visibility of all matched elements by adjusting their opacity and\r
+ * firing an optional callback after completion. Only the opacity is adjusted for\r
+ * this animation, meaning that all of the matched elements should already\r
+ * have some form of height and width associated with them.\r
+ */\r
+ public Effects fadeToggle(int millisecs, Function... f) {\r
+ return as(Effects).fadeToggle(millisecs, f);\r
+ }\r
+ \r
+ \r
/**\r
* Removes all elements from the set of matched elements that do not match the\r
* specified function. The function is called with a context equal to the\r
*/
LazyGQuery<T> fadeOut(int millisecs, Function... f);
+ /**
+ * Toggle the visibility of all matched elements by adjusting their opacity and
+ * firing an optional callback after completion. Only the opacity is adjusted for
+ * this animation, meaning that all of the matched elements should already
+ * have some form of height and width associated with them.
+ */
+ Effects fadeToggle(int millisecs, Function... f);
+
/**
* Removes all elements from the set of matched elements that do not match the
* specified function. The function is called with a context equal to the