diff --git a/core/src/components/ripple-effect/ripple-effect.tsx b/core/src/components/ripple-effect/ripple-effect.tsx index 34fa56a097..d4b30a845b 100644 --- a/core/src/components/ripple-effect/ripple-effect.tsx +++ b/core/src/components/ripple-effect/ripple-effect.tsx @@ -19,7 +19,9 @@ export class RippleEffect implements ComponentInterface { */ @Method() addRipple(pageX: number, pageY: number) { - rIC(() => this.prepareRipple(pageX, pageY)); + if (!location.search.includes('ionic:animate=false')) { + rIC(() => this.prepareRipple(pageX, pageY)); + } } private prepareRipple(pageX: number, pageY: number) {