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

img-cube

v1.0.2

Published

A web component that is a container (cube) that holds an image. When you hover over it the cube will flip to a text face that you can use as a descriptor for the image. When the mouse is no longer hover over the cube it will flip back to the image

Downloads

13

Readme

Image-Cube:

What is it?

Image-Cube is a custom web component that holds a thumbnail image. When you hover over the image, it will roll over like a cube to another face that has text describing the image. Once your mouse is not hovering over the image it will roll back to the image. There is an image of it below.

Alt text

Click here for Demo

How to use it?

It is quite easy to use it on your webpage. Just follow the below steps:

  1. Include the link to the script file that holds the this custom web component (img-cube.js) near the bottom of the body section of your webpage. See below
    <script src="./imagecube.js"></script>
  1. Then use the custom element tags on your webpage.
    <img-cube src="http://lorempixel.com/192/96/sports/2" title="Test" detail="Guy Riding a bike"></img-cube>

That is all you have to do to use this custom element. There is an example HTML page (imacube.html) that shows how to use it.

    <!DOCTYPE html>
    <html>
      <head>
        <title>Dropdown with Web Components</title>
      </head>
      <body>

        <h1>This is a test of the img-cube component</h1>

        <img-cube src="http://lorempixel.com/192/96/sports/2" title="Test" detail="Guy Riding a bike"></img-cube>

        <script src="./imgcube.js"></script>

      </body>
    </html>

There are only three attributes that you need to set.

  1. src - Is the link to the image that you are using
  2. title - Will be the title of the text face of the cube
  3. detail - The text that will be shown below the title on the text face of the cube.

Note: The style for this control was taken from codepen. It was designed by Joshua Hibbert. He deserves credit for the design. I just turn his design into a web component.