All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.polymer.scale.element.ScaleDownAnimationElement Maven / Gradle / Ivy

There is a newer version: 1.9.3.1
Show newest version
/*
 * 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.scale.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;

/**
 * 

<scale-down-animation> animates the scale transform of an element from 1 to 0. By default it
scales in both the x and y axes.

*

Configuration:

*
{
 *   name: 'scale-down-animation',
 *   node: <node>,
 *   axis: 'x' | 'y' | '',
 *   transformOrigin: <transform-origin>,
 *   timing: <animation-timing>
 * }
 * 
*/ @JsType public interface ScaleDownAnimationElement extends HTMLElement { public static final String TAG = "scale-down-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