{"id":43737979,"url":"https://github.com/arsensokolov/jquery.classycountdown","last_synced_at":"2026-02-05T11:08:28.754Z","repository":{"id":57282540,"uuid":"136097130","full_name":"arsensokolov/jquery.classycountdown","owner":"arsensokolov","description":"jQuery ClassyCountdown","archived":false,"fork":false,"pushed_at":"2019-08-26T15:29:18.000Z","size":14,"stargazers_count":6,"open_issues_count":2,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-22T01:41:32.364Z","etag":null,"topics":["countdown","countdown-timer","jquery-plugin"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arsensokolov.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-06-05T00:21:42.000Z","updated_at":"2023-01-28T03:29:49.000Z","dependencies_parsed_at":"2022-09-07T14:50:17.133Z","dependency_job_id":null,"html_url":"https://github.com/arsensokolov/jquery.classycountdown","commit_stats":null,"previous_names":["arsenbespalov/jquery.classycountdown"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/arsensokolov/jquery.classycountdown","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arsensokolov%2Fjquery.classycountdown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arsensokolov%2Fjquery.classycountdown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arsensokolov%2Fjquery.classycountdown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arsensokolov%2Fjquery.classycountdown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arsensokolov","download_url":"https://codeload.github.com/arsensokolov/jquery.classycountdown/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arsensokolov%2Fjquery.classycountdown/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29120484,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T10:47:47.471Z","status":"ssl_error","status_checked_at":"2026-02-05T10:45:08.119Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["countdown","countdown-timer","jquery-plugin"],"created_at":"2026-02-05T11:08:27.848Z","updated_at":"2026-02-05T11:08:28.740Z","avatar_url":"https://github.com/arsensokolov.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Slick Circular jQuery Countdown Plugin - Classy Countdown\n\nClassy Countdown is a jQuery plugin that makes use of Html5 canvas to render a slick, circular, themeable countdown timer on your web page.\n\n## Dependencies:\n\n- jQuery\n- jQuery [knob](https://github.com/aterrien/jQuery-Knob) plugin\n- jQuery [throttle](https://github.com/cowboy/jquery-throttle-debounce) plugin\n\n## How to use it:\n\n1. Load jQuery and other dependencies in the web page.\n\n```html\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/jquery-knob@1.2.11/dist/jquery.knob.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"js/jquery.throttle.js\"\u003e\u003c/script\u003e\n```\n\n2. Load the jQuery Classy Countdown plugin's files in the web page.\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/jquery.classycountdown@1.0.1/css/jquery.classycountdown.min.css\"\u003e\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/jquery.classycountdown@1.0.1/js/jquery.classycountdown.min.js\"\u003e\u003c/script\u003e\n```\n\n3. Call the plugin to render a circular countdown timer within the target container.\n\n```javascript\n$('#countdown-container').ClassyCountdown({\n    theme: \"white\", // theme\n    end: $.now() + 645600 // end time\n});\n```\n\n4. All the parameters.\n\n```javascript\n$('#countdown-container').ClassyCountdown({\n\n// flat-colors, flat-colors-wide, flat-colors-very-wide, \n// flat-colors-black, black, black-wide, black-very-wide, \n// black-black, white, white-wide, \n// white-very-wide or white-black\n    theme: \"white\",\n\n// end time\n    end: $.now() + 645600,\n    now: $.now(),\n\n// whether to display the days/hours/minutes/seconds labels.\n    labels: true,\n\n// object that specifies different language phrases for says/hours/minutes/seconds as well as specific CSS styles.\n    labelsOptions: {\n        lang: {\n            days: 'Days',\n            hours: 'Hours',\n            minutes: 'Minutes',\n            seconds: 'Seconds'\n        },\n        style: 'font-size: 0.5em;'\n    },\n\n// custom style for the countdown\n    style: {\n        element: '',\n        labels: false,\n        textCSS: '',\n        days: {\n            gauge: {\n                thickness: 0.02,\n                bgColor: 'rgba(0, 0, 0, 0)',\n                fgColor: 'rgba(0, 0, 0, 1)',\n                lineCap: 'butt'\n            },\n            textCSS: ''\n        },\n        hours: {\n            gauge: {\n                thickness: 0.02,\n                bgColor: 'rgba(0, 0, 0, 0)',\n                fgColor: 'rgba(0, 0, 0, 1)',\n                lineCap: 'butt'\n            },\n            textCSS: ''\n        },\n        minutes: {\n            gauge: {\n                thickness: 0.02,\n                bgColor: 'rgba(0, 0, 0, 0)',\n                fgColor: 'rgba(0, 0, 0, 1)',\n                lineCap: 'butt'\n            },\n            textCSS: ''\n        },\n        seconds: {\n            gauge: {\n                thickness: 0.02,\n                bgColor: 'rgba(0, 0, 0, 0)',\n                fgColor: 'rgba(0, 0, 0, 1)',\n                lineCap: 'butt'\n            },\n            textCSS: ''\n        }\n    },\n\n// callback that is fired when the countdown reaches 0.\n    onEndCallback: function () {\n    }\n\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farsensokolov%2Fjquery.classycountdown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farsensokolov%2Fjquery.classycountdown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farsensokolov%2Fjquery.classycountdown/lists"}