Update examples

pull/186/head
Cory LaViska 2020-08-24 09:22:34 -04:00
rodzic 175d85a96d
commit 4470f73147
1 zmienionych plików z 18 dodań i 3 usunięć

Wyświetl plik

@ -2,12 +2,27 @@
[component-header:sl-image-comparer]
Compares two images with a sliding panel, commonly used to demonstrate visual differences between similar photos.
Compare visual differences between similar photos with a sliding panel.
For best results, use images that share the same dimensions. The slider can be controlled by dragging or pressing the left and right arrow keys. (Tip: press shift + arrows to move the slider in larger intervals, or home + end to jump to the beginning or end.)
```html preview
<sl-image-comparer>
<img slot="before" src="/assets/images/kittens-grayscale.jpg" alt="Kittens in a basket in grayscale">
<img slot="after" src="/assets/images/kittens-color.jpg" alt="Kittens in a basket in color">
<img slot="before" src="/assets/images/kittens-grayscale.jpg" alt="Grayscale version of kittens in a basket looking around.">
<img slot="after" src="/assets/images/kittens-color.jpg" alt="Color version of kittens in a basket looking around.">
</sl-image-comparer>
```
## Examples
### Initial Position
Use the `position` attribute to set the initial position of the slider. This is a percentage from `0` to `100`.
```html preview
<sl-image-comparer position="0">
<img slot="before" src="https://images.unsplash.com/photo-1520903074185-8eca362b3dce?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1200&q=80" alt="A person sitting on bricks wearing untied boots.">
<img slot="after" src="https://images.unsplash.com/photo-1520640023173-50a135e35804?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2250&q=80" alt="A person sitting on a yellow curb tying shoelaces on a boot.">
</sl-image-comparer>
```