com.vaadin.polymer.fade.element.FadeInAnimationElement Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from neon-animation project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.fade.element;
import com.vaadin.polymer.elemental.*;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.js.JsProperty;
import com.google.gwt.core.client.js.JsType;
/**
* <fade-in-animation>
animates the opacity of an element from 0 to 1.
* Configuration:
* {
* name: 'fade-in-animation',
* node: <node>
* timing: <animation-timing>
* }
*
*/
@JsType
public interface FadeInAnimationElement extends HTMLElement {
public static final String TAG = "fade-in-animation";
public static final String SRC = "neon-animation/neon-animation.html";
/**
*
*
* JavaScript Info:
* @method configure
* @param {} config
*
*/
void configure(JavaScriptObject config);
/**
* Defines the animation timing.
*
* JavaScript Info:
* @property animationTiming
* @type Object
* @behavior TransformAnimation
*/
@JsProperty JavaScriptObject getAnimationTiming();
/**
* Defines the animation timing.
*
* JavaScript Info:
* @property animationTiming
* @type Object
* @behavior TransformAnimation
*/
@JsProperty void setAnimationTiming(JavaScriptObject value);
/**
* Called when the animation finishes.
*
* JavaScript Info:
* @method complete
* @behavior TransformAnimation
*/
void complete();
/**
* Sets transform
and transformOrigin
properties along with the prefixed versions.
*
* JavaScript Info:
* @method setPrefixedProperty
* @param {} node
* @param {} property
* @param {} value
* @behavior TransformAnimation
*/
void setPrefixedProperty(JavaScriptObject node, JavaScriptObject property, JavaScriptObject value);
/**
* Returns the animation timing by mixing in properties from config
to the defaults defined
by the animation.
*
* JavaScript Info:
* @method timingFromConfig
* @param {} config
* @behavior TransformAnimation
*/
void timingFromConfig(JavaScriptObject config);
/**
*
*
* JavaScript Info:
* @method registered
* @behavior TransformAnimation
*/
void registered();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy