示例#1
0
 /// <summary>
 /// Hide the matched elements.
 /// </summary>
 /// <param name="options">A map of additional options to pass to the method.</param>
 /// <returns></returns>
 public virtual jQuery Hide(EffectOptions options)
 {
     return(null);
 }
示例#2
0
 /// <summary>
 /// Hide the matched elements.
 /// </summary>
 /// <param name="options">A map of additional options to pass to the method.</param>
 /// <returns></returns>
 public virtual jQuery Hide(EffectOptions options)
 {
     return null;
 }
示例#3
0
 /// <summary>
 /// Perform a custom animation of a set of CSS properties.
 /// </summary>
 /// <param name="properties">An object of CSS properties and values that the animation will move toward.</param>
 /// <param name="options">An object of CSS properties and values that the animation will move toward.</param>
 /// <returns></returns>
 public virtual jQuery Animate(object properties, EffectOptions options)
 {
     return(null);
 }
示例#4
0
 /// <summary>
 /// Display the matched elements.
 /// </summary>
 /// <param name="options">A map of additional options to pass to the method.</param>
 /// <returns></returns>
 public virtual jQuery Show(EffectOptions options)
 {
     return null;
 }
示例#5
0
 /// <summary>
 /// Display or hide the matched elements.
 /// </summary>
 /// <param name="options">A map of additional options to pass to the method.</param>
 /// <returns></returns>
 public virtual jQuery Toggle(EffectOptions options)
 {
     return null;
 }
示例#6
0
文件: Fading.cs 项目: txdv/Frameworks
 /// <summary>
 /// Display the matched elements by fading them to opaque.
 /// </summary>
 /// <param name="options">A map of additional options to pass to the method.</param>
 /// <returns></returns>
 public virtual jQuery FadeIn(EffectOptions options)
 {
     return null;
 }
 /// <summary>
 /// Display the matched elements with a sliding motion.
 /// </summary>
 /// <param name="options">A map of additional options to pass to the method.</param>
 /// <returns></returns>
 public virtual jQuery SlideDown(EffectOptions options)
 {
     return null;
 }
示例#8
0
文件: Fading.cs 项目: txdv/Frameworks
 public virtual Task FadeOutTask(EffectOptions options)
 {
     return null;
 }
示例#9
0
文件: Fading.cs 项目: txdv/Frameworks
 public virtual Task FadeOutTask(EffectOptions options)
 {
     return(null);
 }
示例#10
0
文件: Fading.cs 项目: txdv/Frameworks
 /// <summary>
 /// Display or hide the matched elements by animating their opacity.
 /// </summary>
 /// <param name="options">A map of additional options to pass to the method.</param>
 /// <returns></returns>
 public virtual jQuery FadeToggle(EffectOptions options)
 {
     return(null);
 }
示例#11
0
 /// <summary>
 /// Perform a custom animation of a set of CSS properties.
 /// </summary>
 /// <param name="properties">An object of CSS properties and values that the animation will move toward.</param>
 /// <param name="options">An object of CSS properties and values that the animation will move toward.</param>
 /// <returns></returns>
 public virtual jQuery Animate(object properties, EffectOptions options)
 {
     return null;
 }
示例#12
0
 /// <summary>
 /// Display the matched elements with a sliding motion.
 /// </summary>
 /// <param name="options">A map of additional options to pass to the method.</param>
 /// <returns></returns>
 public virtual jQuery SlideDown(EffectOptions options)
 {
     return(null);
 }