npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

solid-compare-image

v0.1.5

Published

> Package based on [react-compare-image](https://github.com/junkboy0315/react-compare-image)

Downloads

6

Readme

Solid Compare Image

Package based on react-compare-image

  1. Installation
  2. Implementation
  3. References

Installation

# npm
npm install solid-compare-image

# yarn
yarn add solid-compare-image

Implementation

import SolidCompareImage from "solid-compare-image";

const App: Component = () => {

  return (
    <SolidCompareImage
        leftImage={...}
        rightImage={...}
    />
  );
};

export default App;

References

Props

| Name | Values/Type | Required | Default | Description | | ---- | ----------- | -------- | ------- | ----------- | | aspectRatio | "taller" \| "wider" | No | "taller" | Which to choose if the aspect ratios of the images are different | | handle | Element | No | - | Custom element | | handleSize | number | No | 40 | Diameter of handle | | hover | boolean | No | 40 | Whether to slide at hover | | leftImage | string | Yes | false | Left image's url | | leftImageAlt | string | No | - | Alt props for left image | | leftImageCss | object | No | - | Custom css for left image | | leftImageLabel | boolean | No | - | Label for left Image | | leftPositionLabel | "top" \| "center" \| "bottom" | No | center | Position for left label | | rightImage | string | Yes | - | Right image's url | | rightImageAlt | string | No | - | Alt props for right image | | rightImageCss | object | No | - | Custom css for right image | | rightImageLabel | string | No | - | Label for right Image | | rightPositionLabel | "top" \| "center" \| "bottom" | No | center | Position for right label | | skeleton | Element | No | - | Element to use like preview | | sliderLineColor | string | No | "#fff" | Line color of slider | | sliderLineWidth | number | No | 2 | Line width of slider (by pixel) | | sliderPositionPercentage | number | No | 0.5 | Default line position (from 0 to 1) | | vertical | boolean | No | false | Compare images vertically instead of horizontally. The left image is on the top and the right image is on the bottom |

Events

| Name | Params | Description | | ---- | ----------- | -------- | | onSliderPositionChange | position:number| Callback function called each time the slider changes. The position (0 to 1) of the slider is passed as arg |