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

com.vaadin.polymer.iron.element.IronOverlayBackdropElement 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 iron-overlay-behavior project by The Polymer Authors
 * that is licensed with http://polymer.github.io/LICENSE.txt license.
 */
package com.vaadin.polymer.iron.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;

/**
 * 

iron-overlay-backdrop is a backdrop used by Polymer.IronOverlayBehavior. It should be a
singleton.

*

Styling

*

The following custom properties and mixins are available for styling.

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Custom propertyDescriptionDefault
--iron-overlay-backdrop-background-colorBackdrop background color#000
--iron-overlay-backdrop-opacityBackdrop opacity0.6
--iron-overlay-backdropMixin applied to iron-overlay-backdrop.{}
--iron-overlay-backdrop-openedMixin applied to iron-overlay-backdrop when it is displayed{}
*/ @JsType public interface IronOverlayBackdropElement extends HTMLElement { public static final String TAG = "iron-overlay-backdrop"; public static final String SRC = "iron-overlay-behavior/iron-overlay-behavior.html"; /** *

Hides the backdrop if needed.

* * JavaScript Info: * @method close * */ void close(); /** *

Removes the backdrop from document body if needed.

* * JavaScript Info: * @method complete * */ void complete(); /** *

Shows the backdrop if needed.

* * JavaScript Info: * @method open * */ void open(); /** *

Returns true if the backdrop is opened.

* * JavaScript Info: * @property opened * @type Boolean * */ @JsProperty boolean getOpened(); /** *

Returns true if the backdrop is opened.

* * JavaScript Info: * @property opened * @type Boolean * */ @JsProperty void setOpened(boolean value); /** *

Appends the backdrop to document body and sets its z-index to be below the latest overlay.

* * JavaScript Info: * @method prepare * */ void prepare(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy