import {MatRippleModule} from '@angular/material/core';
MatRipple
Selector: [mat-ripple] [matRipple]
Exported as: matRippleName | Description |
---|---|
@Input('matRippleAnimation')
|
Configuration for the ripple animation. Allows modifying the enter and exit animation
duration of the ripples. The animation durations will be overwritten if the
|
@Input('matRippleCentered')
|
Whether the ripple always originates from the center of the host element's bounds, rather than originating from the location of the click event. |
@Input('matRippleColor')
|
Custom color for all ripples. |
@Input('matRippleDisabled')
|
Whether click events will not trigger the ripple. Ripples can be still launched manually
by using the |
@Input('matRippleRadius')
|
If set, the radius in pixels of foreground ripples when fully expanded. If unset, the radius will be the distance from the center of the ripple to the furthest corner of the host element's bounding rectangle. |
@Input('matRippleTrigger')
|
The element that triggers the ripple when click events are received. Defaults to the directive's host element. |
@Input('matRippleUnbounded')
|
Whether the ripples should be visible outside the component's bounds. |
fadeOutAll | |
---|---|
Fades out all currently showing ripple elements. |
launch | |
---|---|
Launches a manual ripple using the specified ripple configuration. |
|
Parameters | |
config RippleConfig
|
Configuration for the manual ripple. |
Returns | |
RippleRef
|
|
launch | |
---|---|
Launches a manual ripple at the specified coordinates within the element. |
|
Parameters | |
x number
|
Coordinate within the element, along the X axis at which to fade-in the ripple. |
y number
|
Coordinate within the element, along the Y axis at which to fade-in the ripple. |
config? RippleConfig
|
Optional ripple configuration for the manual ripple. |
Returns | |
RippleRef
|
|
RippleRef
Reference to a previously launched ripple element.
Name | Description |
---|---|
|
Ripple configuration used for the ripple. |
|
Reference to the ripple HTML element. |
|
Current state of the ripple. |
fadeOut | |
---|---|
Fades out the ripple element. |
RippleGlobalOptions
Configurable options for matRipple
.
Name | Description |
---|---|
|
Configuration for the animation duration of the ripples. There are two phases with different
durations for the ripples. The animation durations will be overwritten if the
|
|
Whether ripples should be disabled. Ripples can be still launched manually by using
the |
|
Whether ripples should start fading out immediately after the mouse our touch is released. By default, ripples will wait for the enter animation to complete and for mouse or touch release. |
RippleAnimationConfig
Interface that describes the configuration for the animation of a ripple. There are two animation phases with different durations for the ripples.
Name | Description |
---|---|
|
Duration in milliseconds for the enter animation (expansion from point of contact). |
|
Duration in milliseconds for the exit animation (fade-out). |
RippleConfig
type RippleConfig = {
color?: string;
centered?: boolean;
radius?: number;
persistent?: boolean;
animation?: RippleAnimationConfig;
terminateOnPointerUp?: boolean;
};
MAT_RIPPLE_GLOBAL_OPTIONS
Injection token that can be used to specify the global ripple options.
const MAT_RIPPLE_GLOBAL_OPTIONS: InjectionToken<RippleGlobalOptions>;
defaultRippleAnimationConfig
Default ripple animation configuration for ripples without an explicit animation config specified.
const defaultRippleAnimationConfig: { enterDuration: number; exitDuration: number; };