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

@silent-human/custom-clock

v0.0.1

Published

A custom clock web component to use in projects needing an analog clock.

Downloads

4

Readme

Custom clock element

A custom clock web component to use in projects needing an analog clock.

Element has been implemented using pure vanilla Javascript.

Installation

To use the custom clock component in your code:

From your project folder, install the component from npm.

npm install @silent-human/custom-clock

Import the component.

In an HTML page:

<script src="./node_modules/@silent-human/custom-clock/custom-clock.js"></script>

Add the component to your application or component:

<custom-clock></custom-clock>

Note: Delete screenshot-examples folder in the node_modules, once installed, to reduce the size of the module. The screenshot-examples folder is just a reference to the examples pictures (below) for the README file.

API

Default attributes values:

dark => false,
hands-color => '{"hour":"#1a1919", "minute":"slateblue", "second":"slateblue"}',
numbers-color => "#1a1919",
bg-color => "#e7e7e7",
bg-image => null,
date => false,
date-color => null,
date-style => null,
size => 400,
square => false,
clock-style => "number"

Possible attributes values:

dark,
hands-color=>
  '{
    "hour":"#1a1919", 
    "minute":"slateblue", 
    "second":"rgb(0,0,0)"
    }',
numbers-color => "#1a1919", "red" or "rgb(0,0,0)",
bg-color => "#1a1919", "red" or "rgb(0,0,0)",
bg-image => "option-1" to "option-5" or "image string URL => http://imageURL",
date,
date-color => "#1a1919", "red" or "rgb(0,0,0)",
date-style => "outline",
size => "600" Number between 300 to 800 in pixels,
square,
clock-style => "number","line","dot" or "square"

Usage example:

<custom-clock
  dark
  hands-color='{"minute":"#c80000", "second":"#c80000"}'
  numbers-color="yellow"
  bg-image="option-1"
  date
  date-color="yellow"
  date-style="outline"
  size="450"
  square
  clock-style="dot"
>
</custom-clock>

Feedback

The element provides some feedback/warning message in the console, when for example, some attributes are assigned without values.

Screenshots of custom-clock examples covering most/all attributes