{"id":19989642,"url":"https://github.com/wavesoft/jquery-wheel-gauge","last_synced_at":"2026-05-07T23:40:31.916Z","repository":{"id":21834818,"uuid":"25157862","full_name":"wavesoft/jquery-wheel-gauge","owner":"wavesoft","description":"A jQuery plugin for displaying a values in a more retro way.","archived":false,"fork":false,"pushed_at":"2015-02-23T10:31:55.000Z","size":172,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-01T20:02:12.059Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/wavesoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2014-10-13T12:33:06.000Z","updated_at":"2015-02-23T10:31:55.000Z","dependencies_parsed_at":"2022-08-20T00:00:50.324Z","dependency_job_id":null,"html_url":"https://github.com/wavesoft/jquery-wheel-gauge","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesoft%2Fjquery-wheel-gauge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesoft%2Fjquery-wheel-gauge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesoft%2Fjquery-wheel-gauge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavesoft%2Fjquery-wheel-gauge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wavesoft","download_url":"https://codeload.github.com/wavesoft/jquery-wheel-gauge/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241430321,"owners_count":19961635,"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","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":[],"created_at":"2024-11-13T04:48:49.076Z","updated_at":"2026-05-07T23:40:26.876Z","avatar_url":"https://github.com/wavesoft.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jquery-wheel-gauge\n\nA jQuery plugin for displaying a values in a more retro way.\n\n![Demo Snapshot](src/snapshot.png)\n\n## How to use\n\nThis plug-in works on input elements. To use it in your project, just include the `rundial.min.js` and `rundial.css`:\n\n```html\n    \u003cscript type=\"text/javascript\" src=\"rundial.min.js\"\u003e\u003c/script\u003e\n    \u003clink rel=\"stylesheet\" href=\"rundial.css\" /\u003e\n```\n\nPut an input element where you want your dial to appear:\n\n```html\n    \u003cinput type=\"text\" class=\"gauge-styling\" id=\"mydial\" /\u003e\n```\n\nAnd call `.rundial()` on that element:\n\n```javascript\n    $(\"#mydial\").rundial({ .. options .. });\n```\n\n## Options Reference\n\nThe rundial function accelts a javascript object with the following basic properties:\n\n  * __min__ : The minimum value range. _(default: 0)_\n  * __max__ : The maximum value range. _(default: 100)_\n  * __width__ : The width of the gauge. _(default: 'auto')_\n  * __height__ : The height of the gauge. _(default: 'auto')_\n  * __step__ : The interval between displayed values. _(default: 1)_\n  * __value__ : The default value for the dial. _(default: [min])_\n\nAnd the following advanced properties: \n\n  * __dampValue__ : The damping value for the easing animation. The bigger this value, the longer the animation will be. _(default: 10)_\n  * __updateDelay__ : How frequently to poll the value of the input element for changes. Set to 0 to disable polling. _(default: 0)_\n  * __format__ : The formatter function to use for the displayed values. _(default: `function(v){ return String(v); }`)_\n  * __overflowText__ : The value to display when the text is overflowing. _(default: '(!)')_\n  * __overflowElmClass__ : The class to append to the value element that displays the `overflowText`. _(default: 'rundial-warn')_\n  * __overflowClass__ : The class to append to the whole rundial element when an overflow occurs. _(default: 'rundial-overrun')_\n  * __underflowText__ : The value to display when the text is underflowing. _(default: '(!)')_\n  * __underflowElmClass__ : The class to append to the value element that displays the `underflowText`. _(default: 'rundial-warn')_\n  * __underflowClass__ : The class to append to the whole rundial element when an underflow occurs. _(default: 'rundial-underrun')_\n  * __adoptClasses__ : Set to `true` to adopt the classes the input element had before being replaced by the rundial. _(default: true)_\n  * __ascending__ : Switch order to ascending. _(default: false)_\n\n# License\n\nThis library is licensed under the MIT License:\n\n    The MIT License (MIT)\n    \n    Copyright (c) 2014 Ioannis Charalampidis\n    \n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n    \n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n    \n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavesoft%2Fjquery-wheel-gauge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwavesoft%2Fjquery-wheel-gauge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavesoft%2Fjquery-wheel-gauge/lists"}