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

com.vaadin.polymer.opaque.element.OpaqueAnimationElement 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.opaque.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;

/**
 * 

<opaque-animation> makes an element opacity:1 for the duration of the animation. Used to prevent
webkit/safari from drawing a frame before an animation for elements that animate from display:none.

*/ @JsType public interface OpaqueAnimationElement extends HTMLElement { public static final String TAG = "opaque-animation"; public static final String SRC = "neon-animation/neon-animation.html"; /** * * * JavaScript Info: * @method complete * @param {} config * */ void complete(JavaScriptObject config); /** * * * 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); /** *

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