UNPKG

ionic-framework

Version:

The ionic-framework package comes with both Javascript and Sass frontend dependencies, located in the root of the package, and a Node API, located in `tooling/`.

22 lines (21 loc) 572 B
import { Renderer, ElementRef } from 'angular2/core'; /** * @name Blur * @description * The blur attribute applies the CSS blur attribute to an element. If the CSS attribute is not supported, * it will fall back to applying a semi-transparent background color to the element. * * @usage * ```html * <ion-card blur> * This card will blur the content behind it. * </ion-card> * ``` * * @demo /docs/v2/demos/blur/ */ export declare class Blur { private _elementRef; private _renderer; constructor(_elementRef: ElementRef, _renderer: Renderer); }