Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package net.java.html.lib.jquery;
public class JQueryAnimationOptions extends net.java.html.lib.Objs {
protected JQueryAnimationOptions(net.java.html.lib.Objs.Constructor> c, java.lang.Object js) {
super(c, js);
}
private static final class $Constructor extends net.java.html.lib.Objs.Constructor {
$Constructor() {
super(JQueryAnimationOptions.class);
}
@Override
public JQueryAnimationOptions create(java.lang.Object obj) {
return obj == null ? null : new JQueryAnimationOptions(this, obj);
}
};
private static final $Constructor $AS = new $Constructor();
public static JQueryAnimationOptions $as(java.lang.Object obj) {
return $AS.create(obj);
}
/**
* A string or number determining how long the animation will run.
*/
public net.java.html.lib.Objs.Property duration = net.java.html.lib.Objs.Property.create(this, java.lang.Object.class, "duration");
/**
* A string indicating which easing function to use for the transition.
*/
public net.java.html.lib.Objs.Property easing = net.java.html.lib.Objs.Property.create(this, java.lang.String.class, "easing");
public java.lang.String easing() { return easing.get(); }
/**
* A function to call once the animation is complete.
*/
public net.java.html.lib.Objs.Property complete = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Function.class, "complete");
public net.java.html.lib.Function complete() { return complete.get(); }
/**
* A function to be called for each animated property of each animated element. This function provides an opportunity to modify the Tween object to change the value of the property before it is set.
*/
public net.java.html.lib.Objs.Property> step = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Function.A2.class, "step");
public net.java.html.lib.Function.A2 super java.lang.Number,? super java.lang.Object,? extends java.lang.Object> step() { return step.get(); }
/**
* A function to be called after each step of the animation, only once per animated element regardless of the number of animated properties. (version added: 1.8)
*/
public net.java.html.lib.Objs.Property,? super java.lang.Number,? super java.lang.Number,? extends java.lang.Object>> progress = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Function.A3.class, "progress");
public net.java.html.lib.Function.A3 super net.java.html.lib.jquery.JQueryPromise,? super java.lang.Number,? super java.lang.Number,? extends java.lang.Object> progress() { return progress.get(); }
/**
* A function to call when the animation begins. (version added: 1.8)
*/
public net.java.html.lib.Objs.Property,? extends java.lang.Object>> start = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Function.A1.class, "start");
public net.java.html.lib.Function.A1 super net.java.html.lib.jquery.JQueryPromise,? extends java.lang.Object> start() { return start.get(); }
/**
* A function to be called when the animation completes (its Promise object is resolved). (version added: 1.8)
*/
public net.java.html.lib.Objs.Property,? super java.lang.Boolean,? extends java.lang.Object>> done = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Function.A2.class, "done");
public net.java.html.lib.Function.A2 super net.java.html.lib.jquery.JQueryPromise,? super java.lang.Boolean,? extends java.lang.Object> done() { return done.get(); }
/**
* A function to be called when the animation fails to complete (its Promise object is rejected). (version added: 1.8)
*/
public net.java.html.lib.Objs.Property,? super java.lang.Boolean,? extends java.lang.Object>> fail = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Function.A2.class, "fail");
public net.java.html.lib.Function.A2 super net.java.html.lib.jquery.JQueryPromise,? super java.lang.Boolean,? extends java.lang.Object> fail() { return fail.get(); }
/**
* A function to be called when the animation completes or stops without completing (its Promise object is either resolved or rejected). (version added: 1.8)
*/
public net.java.html.lib.Objs.Property,? super java.lang.Boolean,? extends java.lang.Object>> always = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Function.A2.class, "always");
public net.java.html.lib.Function.A2 super net.java.html.lib.jquery.JQueryPromise,? super java.lang.Boolean,? extends java.lang.Object> always() { return always.get(); }
/**
* A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string. When a custom queue name is used the animation does not automatically start; you must call .dequeue("queuename") to start it.
*/
public net.java.html.lib.Objs.Property queue = net.java.html.lib.Objs.Property.create(this, java.lang.Object.class, "queue");
/**
* A map of one or more of the CSS properties defined by the properties argument and their corresponding easing functions. (version added: 1.4)
*/
public net.java.html.lib.Objs.Property specialEasing = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Objs.class, "specialEasing");
public net.java.html.lib.Objs specialEasing() { return specialEasing.get(); }
}