コード例 #1
0
 public Squish(JsString id_of_element, EffectOptions options)
     : base(id_of_element, options)
 {
 }
コード例 #2
0
 public Squish(HtmlElement el, EffectOptions options)
     : base(el, options)
 {
 }
コード例 #3
0
 public Pulsate(JsString id_of_element, EffectOptions options)
     : base(id_of_element, options)
 {
 }
コード例 #4
0
 public Pulsate(HtmlElement el, EffectOptions options)
     : base(el, options)
 {
 }
コード例 #5
0
 public Fold(JsString id_of_element, EffectOptions options)
     : base(id_of_element, options)
 {
 }
コード例 #6
0
 public Fold(HtmlElement el, EffectOptions options)
     : base(el, options)
 {
 }
コード例 #7
0
 public DropOut(JsString id_of_element, EffectOptions options)
     : base(id_of_element, options)
 {
 }
コード例 #8
0
 /// <summary>
 /// The basic syntax to start an effect
 /// </summary>
 /// <param name="id_of_element">element can be either a string containing the id of the element, or a Java Script DOM element object.</param>
 /// <param name="required_params">required-params depend on the effect being called and may not be needed. Most effects do not have required parameters.
 /// See the documentation for the core effects to learn if the effect has required parameters or if this parameter should be omitted.</param>
 public Effect(JsString id_of_element, EffectOptions required_params)
 {
 }
コード例 #9
0
 public Appear(JsString id_of_element, EffectOptions options)
     : base(id_of_element, options)
 {
 }
コード例 #10
0
 public Appear(HtmlElement el, EffectOptions options)
     : base(el, options)
 {
 }
コード例 #11
0
 public Parallel(JsArray<Effect> subEffects, EffectOptions options)
     : base("", options) { }
コード例 #12
0
 public Opacity(JsString id_of_element, EffectOptions options)
     : base(id_of_element, options)
 {
 }
コード例 #13
0
 public Opacity(HtmlElement el, EffectOptions options)
     : base(el, options)
 {
 }
コード例 #14
0
 public SwitchOff(JsString id_of_element, EffectOptions options)
     : base(id_of_element, options)
 {
 }
コード例 #15
0
 public DropOut(HtmlElement el, EffectOptions options)
     : base(el, options)
 {
 }
コード例 #16
0
 public SwitchOff(HtmlElement el, EffectOptions options)
     : base(el, options)
 {
 }
コード例 #17
0
 /// <summary>
 /// The basic syntax to start an effect
 /// </summary>
 /// <param name="el">element can be either a string containing the id of the element, or a Java Script DOM element object.</param>
 /// <param name="required_params">required-params depend on the effect being called and may not be needed. Most effects do not have required parameters.
 /// See the documentation for the core effects to learn if the effect has required parameters or if this parameter should be omitted.</param>
 public Effect(HtmlElement el, EffectOptions required_params)
 {
 }