diff --git a/src/components/image-comparer/image-comparer.css b/src/components/image-comparer/image-comparer.css index 05325028a..3185bcbd5 100644 --- a/src/components/image-comparer/image-comparer.css +++ b/src/components/image-comparer/image-comparer.css @@ -6,9 +6,6 @@ display: inline-block; position: relative; -} - -.image-comparer { max-width: 100%; max-height: 100%; overflow: hidden; diff --git a/src/components/image-comparer/image-comparer.ts b/src/components/image-comparer/image-comparer.ts index 4949fb482..45814ee86 100644 --- a/src/components/image-comparer/image-comparer.ts +++ b/src/components/image-comparer/image-comparer.ts @@ -23,7 +23,6 @@ import styles from './image-comparer.css'; * * @event change - Emitted when the position changes. * - * @csspart base - The component's base wrapper. * @csspart before - The container that wraps the before image. * @csspart after - The container that wraps the after image. * @csspart divider - The divider that separates the images. @@ -40,19 +39,18 @@ export default class WaImageComparer extends WebAwesomeElement { private readonly localize = new LocalizeController(this); - @query('.image-comparer') base: HTMLElement; @query('.handle') handle: HTMLElement; /** The position of the divider as a percentage. */ @property({ type: Number, reflect: true }) position = 50; private handleDrag(event: PointerEvent) { - const { width } = this.base.getBoundingClientRect(); + const { width } = this.getBoundingClientRect(); const isRtl = this.localize.dir() === 'rtl'; event.preventDefault(); - drag(this.base, { + drag(this, { onMove: x => { this.position = parseFloat(clamp((x / width) * 100, 0, 100).toFixed(2)); if (isRtl) this.position = 100 - this.position; @@ -98,46 +96,45 @@ export default class WaImageComparer extends WebAwesomeElement { const isRtl = this.hasUpdated ? this.localize.dir() === 'rtl' : this.dir === 'rtl'; return html` -
-
-
- -
- -
- -
+
+
+
-
- - - -
+ +
+
+ +
+
+ + +
`;