Example usage for com.google.gwt.query.client Effects Effects

List of usage examples for com.google.gwt.query.client Effects Effects

Introduction

In this page you can find the example usage for com.google.gwt.query.client Effects Effects.

Prototype

Class Effects

To view the source code for com.google.gwt.query.client Effects Effects.

Click Source Link

Usage

From source file:eu.europeana.web.timeline.client.ui.effects.Tween.java

License:EUPL

public void start() {
    $(element).as(Effects.Effects).animate(properties, Effects.Speed.FAST, Effects.Easing.SWING, callBack);
}

From source file:eu.europeana.web.timeline.client.ui.effects.Tween.java

License:EUPL

public void fadeOut() {
    $(element).as(Effects.Effects).fadeOut(Effects.Speed.DEFAULT, callBack);
}

From source file:eu.europeana.web.timeline.client.ui.effects.Tween.java

License:EUPL

public void fadeIn() {
    $(element).as(Effects.Effects).fadeIn(Effects.Speed.DEFAULT, callBack);
}