List of usage examples for com.google.gwt.animation.client Animation subclass-usage
From source file ch.sebastienzurfluh.swissmuseum.core.client.view.animations.ScrollToTheTop.java
/**
* This singleton scrolls the page to the top when ordered to.
*
*
* @author Sebastien Zurfluh
*
From source file ch.sebastienzurfluh.swissmuseum.core.client.view.eventbushooks.ScrollToPanelOnEvent.java
/**
* This class listens to the page changes in order to scroll
* automatically to the right position on load.
*
*
* @author Sebastien Zurfluh
From source file client.application.animation.ProgressAnimation.java
public class ProgressAnimation extends Animation { private final MaterialProgress progress; public ProgressAnimation(MaterialProgress progress) { this.progress = progress;
From source file com.alkacon.geranium.client.util.A_Animation.java
/** * Abstract animation class.<p> */ public abstract class A_Animation extends Animation { /** The call-back function to execute on animation complete. */
From source file com.arcbees.beestore.client.application.ScrollTopAnimation.java
class ScrollTopAnimation extends Animation { private Element element; private int start; public ScrollTopAnimation(Element element) { this.element = element;
From source file com.arcbees.website.client.application.ScrollTopAnimation.java
class ScrollTopAnimation extends Animation { private Element element; private int start; public ScrollTopAnimation(Element element) { this.element = element;
From source file com.arcbees.website.client.application.support.ScrollToAnimation.java
public class ScrollToAnimation extends Animation { private final Element element; private final int target; private int start; private int gap;
From source file com.fullmetalgalaxy.client.game.board.layertoken.AnimEvent.java
/**
*
* @author Vincent
*
* this class make an animation from game action EbEvtMove
*/
From source file com.github.a2g.core.platforms.html4.mouse.CustomAnimation.java
class CustomAnimation extends Animation { InternalAPI api; double startCameraX; int touchX; int prevX;
From source file com.github.a2g.core.platforms.html4.SystemAnimationForHtml4.java
public class SystemAnimationForHtml4 extends com.google.gwt.animation.client.Animation implements SystemAnimationAPI { boolean isLinear; SystemAnimationCallbackAPI callbacks; public SystemAnimationForHtml4(SystemAnimationCallbackAPI callbacks, boolean isLinear) {