- Using Light DOM allows you to style everything with regular CSS
- Horizontally scrollable container used as fallback if JS doesn't load (this also helps reduce CLS by stabilizing the overall height)
- No dependencies
https://codepen.io/nonsalant/pen/gbYRJKd
<link rel="stylesheet" href="https://unpkg.com/image-compare-light-dom/image-compare.css">
<script type="module" src="https://unpkg.com/image-compare-light-dom/image-compare.js"></script>-
Grab the files from the
srcfolder. -
Load the style and the main script (adjust the paths as needed):
<link rel="stylesheet" href="../src/image-compare.css">
<script src="../src/image-compare.js" type="module"></script><image-compare>
<img src="before.jpg" alt="" width="" height="">
<img src="after.jpg" alt="" width="" height="">
</image-compare>Control how much of the first image is shown initially by adding an exposure attribute with a value between 0 and 100.
- 0 means the first image is completely hidden.
- 100 means the first image is fully visible.
- 50 means both images are half-shown, half-hidden.
E.g: <image-compare exposure="0">
- Forked from: image-compare by Paul Hebert for Cloud Four, which uses the Shadow DOM.
- Inspired by this article: Light-DOM-Only Web Components are Sweet by Chris Coyier.