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

captioner-js

v1.0.3

Published

Beautiful and semantically correct Captions for your images

Downloads

8

Readme

CaptionerJs

Beautiful and semantically correct captions

Why another caption plugin ?

There are lots of caption plugins out there but CaptionerJs was propositally built to create clean and uncluttered HTML.

CaptionerJs won't burry your image inside layers of div's, instead it makes use of figure and figcaption to produce uncluttered and semantically correct HTML.

You can write valid HTML, CaptionerJs will make use of title and alt attributes to create the caption

CaptionerJs is plugin based, you can easily add new caption types

Getting Started

Start by making sure jQuery is included in your page

<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>

Then include CaptionerJs in your page

<script src="/path/to/CaptionerJs.js"></script>

And finally add caption information to your images

<img
    src="./images/chicory.jpg"
    role="caption"
    title="Chicory flower"
    alt="Common chicory, Cichorium intybus, is a somewhat woody, perennial herbaceous plant usually with bright blue flowers, rarely white or pink."
 />

CaptionerJs will be applied to all elements containing a role="caption"

Configuration Options

CaptionerJs can be configured using markup:

  • data-captioner-type: the type of caption to show, defaults to static
  • data-captioner-class: the css class to add to the container element, defaults to CaptionerJs
  • data-captioner-start-closed: when showing an animated caption should it start open or closed, defaults to false

Or JavaScript

    $("img").CaptionerJs({
        type: "...",
        cls  : "...",
        options: {
            startClosed: ...
        }
    });

If using the javascript option, do not set the role="caption" attribute on your elements

Available Caption types:

  • static, the caption is on the lower end of the image
  • animated, the same as static but the caption can be opened or closed
  • classic, the caption is shown below the image

Examples

Point your browser to dist/demo/index.html to see it in action or visit the CaptionerJs home page