JQuery uLED plugin: Difference between revisions
Jump to navigation
Jump to search
Kaplanerkan (talk | contribs) No edit summary |
Kaplanerkan (talk | contribs) No edit summary |
||
| Line 28: | Line 28: | ||
</pre> | </pre> | ||
= Options = | |||
* id - ID of the element to apply uLED to. | |||
* type - type of the LED display, can be "countdown", "random" or "time". | |||
* format - time format for the led (ex. "hh:mm"). | |||
* color - hex color of the digits. | |||
* bgcolor - hex color of the LED background. | |||
* size - LED digit size. | |||
* rounded - round radius of the LED digits. | |||
* led - LED type. | |||
Revision as of 21:23, 26 December 2012
Description of the JQuery uLED
The jQuery uLED is a jQuery plugin written by Marius Stanciu - Sergiu, a plugin that can be used as a countdown, a clock or as a random numbers.
Sample Code with NsBasic
JavaScript
$(document).ready(function(){
var l0 = new uLED({
id : "led",
type : "countdown",
format : "ddd:hh:mm:ss",
color : "#eee",
bgcolor : "#000",
size : 5,
rounded : 1,
led : "font3"
}); });
End JavaScript
HTML
<div id="led"></div>
End HTML
Options
- id - ID of the element to apply uLED to.
- type - type of the LED display, can be "countdown", "random" or "time".
- format - time format for the led (ex. "hh:mm").
- color - hex color of the digits.
- bgcolor - hex color of the LED background.
- size - LED digit size.
- rounded - round radius of the LED digits.
- led - LED type.