{"id":32225959,"url":"https://github.com/lasverg/bandclock","last_synced_at":"2026-06-10T07:30:54.719Z","repository":{"id":31521652,"uuid":"35086100","full_name":"lasverg/bandClock","owner":"lasverg","description":"Lightweight jQuery plugin to render simple, retina optimized dynamic clock","archived":false,"fork":false,"pushed_at":"2017-02-10T16:25:57.000Z","size":467,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-22T09:41:44.505Z","etag":null,"topics":["bower","canvas","clock","jquery","jquery-plugin","lightweight-plugin"],"latest_commit_sha":null,"homepage":"http://lasverg.github.io/bandClock","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lasverg.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-05T08:00:42.000Z","updated_at":"2025-07-06T20:12:17.000Z","dependencies_parsed_at":"2022-08-30T16:11:27.405Z","dependency_job_id":null,"html_url":"https://github.com/lasverg/bandClock","commit_stats":null,"previous_names":["zaniitiin/bandclock"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/lasverg/bandClock","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lasverg%2FbandClock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lasverg%2FbandClock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lasverg%2FbandClock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lasverg%2FbandClock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lasverg","download_url":"https://codeload.github.com/lasverg/bandClock/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lasverg%2FbandClock/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280416591,"owners_count":26327043,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-22T02:00:06.515Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bower","canvas","clock","jquery","jquery-plugin","lightweight-plugin"],"created_at":"2025-10-22T09:42:02.997Z","updated_at":"2025-10-22T09:42:04.004Z","avatar_url":"https://github.com/lasverg.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BandClock\n\n\u003e Lightweight plugin to render simple, retina optimized dynamic clock\n\n## Freature\n![](https://raw.githubusercontent.com/zaniitiin/bandClock/master/example/demo.png)\n\n\n* Highly customizable\n* Very easy to you\n* Works in all modern browsers\n\n#### Framework support\n\n* jQuery plugin (~921 bytes)\n\n## Get Started\n\nTo use the band clock plugin you need to load the current version of jQuery (\u003e 1.6.4)\n\n##Install with Bower\nYou can also install and manage BandClock using Bower:\n```html\n$ bower install bandClock\n```\n\n```html\n\u003cdiv class=\"clock\"\u003e\u003c/div\u003e\n\n\u003cscript src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"/path/to/bandClock.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n  $(function () {\n    $(.clock).bandClock({\n      // your options goes here\n    });\n  })\n\u003c/script\u003e\n```\n## Options\nYou can pass these options to set a custom look and feel for the plugin.\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003cth\u003eProperty\u003c/th\u003e\n    \u003cth\u003eDefault\u003c/th\u003e\n    \u003cth\u003eDescription\u003c/th\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003esize\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003e300\u003c/td\u003e\n    \u003ctd\u003eSize of the clock in px. It will always be in a .\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ecolor\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003e#18FFFF\u003c/td\u003e\n    \u003ctd\u003eThe color of circular band of clock. You can either pass a valid css color string.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ebgColor\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003e#212121\u003c/td\u003e\n    \u003ctd\u003eThe background color for disable rendering.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003elineWidth\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003e10\u003c/td\u003e\n    \u003ctd\u003eThickness of circular band line in px.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003elineCap\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003ebutt\u003c/td\u003e\n    \u003ctd\u003edefines how the edge of the band line looks like,. posible values are : \u003ccode\u003ebutt\u003c/code\u003e, \u003ccode\u003eround\u003c/code\u003e and \u003ccode\u003esquare\u003c/code\u003e \u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003egap\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003e5\u003c/td\u003e\n    \u003ctd\u003eDistance between band line of hours, minutes, seconds in px.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003efontStyle\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003e20 Verdana\u003c/td\u003e\n    \u003ctd\u003eDefines font-size and font-family of the center time display\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## Test\nTo run the test just use the karma adapter of grunt: `grunt test`\n\n## Browser Support\nNative support\n\n* Chrome\n* Safari\n* FireFox\n* Opera\n* Internet Explorer 9+\n\n## Copyright\nCopyright (c) 2015 Nitin Jha, contributors. Released under the MIT, GPL licenses.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flasverg%2Fbandclock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flasverg%2Fbandclock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flasverg%2Fbandclock/lists"}