Socket
Socket
Sign inDemoInstall

clocked

Package Overview
Dependencies
3
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    clocked

An analog clock using momentjs, moment-timezone and svg


Version published
Weekly downloads
4
Maintainers
1
Install size
6.79 MB
Created
Weekly downloads
 

Readme

Source

Clocked

An SVG Analog clock.

Originally Created by: Anthony Datu
Revived by: webmech
Purpose: Modular Analog Clock For use in browserify based apps
Dependencies:
  • moment.js

  • moment-timezone.js

  • angular-expressions

Installation
npm install --save clocked
Basic Usage
var Clock = require('clocked'),
	el = document.createElement('div');

var clock = new Clock(el, {
	autoStart: false
});

clock.start();
Parameters:
  • Element Can be a valid selector a htmlElement (any instance of Node)
  • Options:
    • autoStart [default true] - Automaticall start when instantiated
Clock Default Colors:

Between 6 am - 5pm, clock color is orange, otherwise gray. The color follows the sun. The colors are overridable

 new Clock('#clock', {
   colors: {
   	'day': 'red',
   	'night': 'black'
   }
 });

Example

Todos:

  • Tests!
  • Make clock instances configurable.
  • Make clock color configurable.
  • Instantiate with element.
  • Generate svg element within constructor.

Keywords

FAQs

Last updated on 11 Dec 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc