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

pd-carousel

v1.0.11

Published

Custom Web Component Images Carousel

Downloads

8

Readme

pd-carousel

A custom web component that can be used in web applications or websites. It provides a carousel window container that can contain an image, a title and an introduction text message. Published on webcomponents.org

Demo page (visit wiki)

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

node.js

Installing

$ npm install pd-carousel

Running the tests

npm test

Tests output explanation

pd-carousel

img

✓ Checks current image is not null upon initialization.

index

✓ checks the index that is set to 1 upon initialization.

carousel-indicator

✓ checks the carousel indicator attribute that is a non empty string having default value 'circle' upon initialization.

cTitle

✓ Checks current title is not null upon initialization.

introText

✓ Checks current introduction text is not null upon initialization.

wordsLengthTime

✓ checks that the time populated by the introduction text words is set to 0 upon initialization.

images

✓ checks that images is not an empty array upon initialization.

cTitles

✓ checks that titles is not an empty array upon initialization.

introTexts

✓ checks that introduction texts is not an empty array upon initialization.

ceiling

✓ checks that ceiling is larger than 0 upon initialization.

removalTimeout

✓ checks that removal timeout is null upon initialization.

sRoot

✓ Checks that component is attached to DOM and is equal to

sRoot

✓ Checks that component is attached to DOM and has empty innerHTML

Array

indexOf()

✓ should return -1 when the value is not present. This is a demo test to check that the response from the testing framework is ok.

Deployment

Add the custom element tag to your HTML page.

The element's parameters are:

  • id (string - optional). If the element has an id then the carousel content will be created from template elements that have attribute data-pd-carousel-id equal to the id of the element. If it is not set then the carousel content will be created from template elements that have attribute data-for="pd-carousel".

Basic Usage

<template data-for="pd-carousel" data-pd-carousel-id="my_carousel">...rest of HTML here...</template><pd-carousel></pd-carousel>

In order for the carousel window to be flexible regarding it's content in the examples below templates are used. The template or other web element (e.g. a custom one) should have either a data-for attribute that has value pd-carousel or a data-pd-carousel-id that matches the id attribute that pd-carousel element has. Adding CSS inside your template can change the overall style of the inner content.

For the carousel to work the below template example has three images, three div elements having class title, three div elements having class introtext and three pd-indicator elements havig type circle. All of the above mentioned elements are members to logical groups of slides, so the data-slide attribute in each element simply shows the group it is attached.

Example HTML

<template data-for="pd-carousel" data-pd-carousel-id="image-gallery">
<style>img { width: 100%; height: 100%; }</style>
<img src="https://picsum.photos/1200/900" data-slide="1"/>
<img src="https://picsum.photos/1201/900" data-slide="2"/>
<img src="https://picsum.photos/1200/901" data-slide="3"/>
<div class="title" data-slide="1">Turpis consequat</div>
<div class="title" data-slide="2">Fusce eget turpis consequat, cursus ante id, vehicula nisl</div>
<div class="title" data-slide="3">Maecenas porta quis nisi sit amet fermentum</div>
<div class="introtext" data-slide="1">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ac facilisis eros. Nullam feugiat ex vel ornare sagittis. Etiam blandit lectus nec dui mollis fermentum. Suspendisse pellentesque eros at risus vehicula porta. Quisque dui tellus, ullamcorper eget diam sit amet, venenatis condimentum odio. Vivamus eget viverra leo. Mauris fringilla metus dolor, porta finibus tortor gravida sed.</div>
<div class="introtext" data-slide="2">Suspendisse iaculis, velit vitae vestibulum volutpat, mauris sapien tempor diam, eu pellentesque arcu ex quis neque. Sed nec mauris at purus viverra scelerisque. Donec metus risus, ultrices in gravida vel, porttitor interdum lectus. Aliquam faucibus metus sed laoreet placerat. Praesent efficitur enim dictum, molestie velit vitae, hendrerit magna. Sed et dolor vel lectus blandit tristique. Cras tristique nec sapien quis pellentesque. Nunc nec ullamcorper sapien. Nulla fermentum quis mi id interdum. Quisque gravida ipsum non euismod pellentesque. Aenean placerat nec tortor eget porta.</div>
<div class="introtext" data-slide="3">Pellentesque quis ex sem. Donec congue, massa ac ultrices bibendum, dolor justo rutrum arcu, dapibus pharetra magna lorem eget sem. Etiam ex lectus, venenatis nec lectus at, lobortis euismod tortor. Donec nec ipsum eget nisl finibus tempor at vitae augue. Fusce ipsum nibh, elementum non ante nec, eleifend molestie nulla. Aenean vitae pharetra ex. Praesent a quam ut tellus molestie vestibulum. Proin nec hendrerit ante. Aenean aliquam arcu nec dolor lobortis bibendum.</div>
<div class="indicators-container">
	<pd-indicator type="circle" data-slide="1"></pd-indicator>
	<pd-indicator type="circle" data-slide="2"></pd-indicator>
	<pd-indicator type="circle" data-slide="3"></pd-indicator>
</div>
</template>
<pd-carousel id="image-gallery"></pd-carousel>

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request 😁

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

  • test-utils.js can be found in https://github.com/github/custom-element-boilerplate