Skip to main content

Clock

A clock is a display that shows the time, with optional hour, minute and second hands.

It can be styled with several attributes that change its appearance.

It has a timer mode that counts down to a specified end time.

Attributes

Common

ID

Sets the object's ID.

The ID identifies the object and is used to reference it in UISet actions, allowing to change its attributes dynamically.

The ID is not unique, it can be shared among multiple objects to quickly change a common attribute.

IDs can't be changed with a UISet action, but they can have a Value Binding assigned to them. Value Bindings on IDs allow an object to be dinamically attached to a set of attribute values.

E.g. the following Value Binding switches the ID of the object between mybutton1 and mybutton2 based on the value of the UISet button.address:

Value binding: ="mybutton" + ui('button', 'address')

UISet: UISet('button', 'address', '1') switches the ID to mybutton1 UISet('button', 'address', '2') switches the ID to mybutton2

Position and Size

Position

Sets the object's position.

The default value is: x0y0.

Attribute Values
ValueDescriptionExample
x<left>y<top>Specify left/top coordinates in pixels.x10y20

Flex Grow

Specifies if the objects should grow to fill the available space.

The default value is: true.

Attribute Values
ValueDescription
trueDefault value. Objects expand to fill the available space.
falseObjects do not grow to fill the available space.

Flex Shrink

Specifies if the objects should shrink to fit the available space.

The default value is: true.

Attribute Values
ValueDescription
trueDefault value. Objects shrink to fit the available space.
falseObjects do not shrink to fit the available space.

Width

Sets the object's width in pixels.

Minimum value is 1.

Height

Sets the object's height in pixels.

Minimum value is 1.

Clock

Type

Specifies the clock type.

The default value is: analog.

Attribute Values
ValueDescription
analogDefault value. Analog clock.
digitalDigital clock.

Time

Specifies the time to display.

The default value is: now.

Attribute Values
ValueDescriptionExample
nowDefault value. Live time.
<hh:mm:ss.SSS>Fixed time. Minutes, seconds and milliseconds are optional.12:00
<timestamp>Fixed timestamp in milliseconds.1789661777885

Time Source

Specifies the time source.

The default value is: server.

Attribute Values
ValueDescription
serverDefault value. Use the server time.
localUse the browser time.

Time Zone Offset

Specifies the time zone offset.

The default value is: +0.0.

Attribute Values
ValueDescriptionExample
<string>Time zone offset in hours.-1.5

Mode

Specifies the clock mode.

The default value is: clock.

Attribute Values
ValueDescription
clockDefault value. Show a clock.
timerShow a timer, that counts down to end time.

End Time

Specifies the end time for the timer.

Attribute Values
ValueDescriptionExample
<hh:mm:ss.SSS>The end time in time format. Milliseconds are optional.12:00:00:0001
<yyyy/MM/dd hh:mm:ss.SSS>The end time in date time format. Milliseconds are optional.01/01/2000 12:00:00:0001
<timestamp>The end time as timestamp.1789661777885

Hands

Hour Hand

Specifies the hour hand visibility.

The default value is: true.

Attribute Values
ValueDescription
trueDefault value. Show hour hand.
falseNo hour hand.

Minute Hand

Specifies the minute hand visibility.

The default value is: true.

Attribute Values
ValueDescription
trueDefault value. Show minute hand.
falseNo minute hand.

Second Hand

Specifies the second hand visibility and behavior.

The default value is: sweep.

Attribute Values
ValueDescription
sweepDefault value. Show second hand with a sweeping movement.
stepShow second hand with a stepping movement.
offNo second hand.

Layout

Hour Markers

Specifies if the hour markers are visible.

The default value is: auto.

Attribute Values
ValueDescription
onShow hour markers.
offNo hour markers.
autoDefault value. Show hour markers only when the clock is large enough.

Minute Markers

Specifies if the minute markers are visible.

The default value is: auto.

Attribute Values
ValueDescription
onShow minute markers.
offNo minute markers.
autoDefault value. Show minute markers only when the clock is large enough.

Numerals

Specifies if the hour numerals are visible.

The default value is: auto.

Attribute Values
ValueDescription
autoDefault value. Show hour (clock mode) or minute (timer mode) numerals when the clock is large enough.
hourShow hour numerals.
minuteShow minute numerals.
offNo numerals.

Time Layout

Specifies the time layout.

The default value is: horizontal.

Attribute Values
ValueDescription
horizontalDefault value. Horizontal layout.
verticalVertical layout.

Time Display Format

Specifies the field's format.

The default value is: {"timestyle":"custom","hour":"2-digit"}.

Panel

Panel

Shows a panel that frames the object. Its style can be modified.

The default value is: true.

Attribute Values
ValueDescription
trueDefault value. Shows the panel.
falseHides the panel.

Panel Color

Specifies the panel color.

The default value is: default.

Attribute Values
ValueDescription
defaultDefault value. Default color.
primaryPrimary color, used to highlight important areas.
warningWarning color, used to highlight warning areas.
successSuccess color, used to highlight success areas.
errorError color, used to highlight error areas.
red,blue,yellow,green,yellow,purple,orange,greenPalette colors.
customCustom color, defined in the "Custom Color" attribute.

Panel Custom Color

Specifies the panel custom color.

Attribute Values
ValueDescriptionExample
<html color>Color in any html accepted format.#ff0000

Style

Face Color

Specifies the clock face color.

Attribute Values
ValueDescriptionExample
<html color>Color in any html accepted format.#ff0000

Hand Color

Specifies the clock hand color.

Attribute Values
ValueDescriptionExample
<html color>Color in any html accepted format.#ff0000

Second Hand Color

Specifies the clock second hand color.

Attribute Values
ValueDescriptionExample
<html color>Color in any html accepted format.#ff0000

Hour Marker Color

Specifies the clock hour marker color.

Attribute Values
ValueDescriptionExample
<html color>Color in any html accepted format.#ff0000

Minute Marker Color

Specifies the clock minute marker color.

Attribute Values
ValueDescriptionExample
<html color>Color in any html accepted format.#ff0000

Numeral Color

Specifies the clock numeral color.

Attribute Values
ValueDescriptionExample
<html color>Color in any html accepted format.#ff0000

Typography

Font Family

Specifies the font family.

The default value is: default.

Font Size

Specifies the font size in pixels or percentage (relative to the project's font size).

The default value is: 14.

Attribute Values
ValueDescriptionExample
<integer>Font size in pixels.
<percentage>%Relative font size in percentage.90%

Font Color

Specifies the text CSS color.

Attribute Values
ValueDescriptionExample
<html color>Color in any html accepted format.#ff0000

Font Weight

Specifies the weight of the font.

The default value is: normal.

Attribute Values
ValueDescription
normalDefault value. Normal.
boldBold.
bolderBolder.
lighterLighter.

Italic

Show the text in italics.

The default value is: false.

Attribute Values
ValueDescription
falseDefault value. Normal.
trueItalics.

View

Visible

Sets the object's visibility.

The default value is: true.

Attribute Values
ValueDescription
trueDefault value. Visible.
falseHidden.

Enabled

Specifies if the object is enabled or disabled. A disabled object appears as grayed out and can't be interacted with.

The default value is: true.

Attribute Values
ValueDescription
trueDefault value. Enabled.
falseDisabled.

Blinks the object at the specified speed.

The default value is: false.

Attribute Values
ValueDescription
falseDefault value. Not blinking.
slowBlinks slowly.
fastBlinks fast.

Transition

Specifies the transition effect when the object is shown or hidden.

The default value is: none.

note

This attribute is experimental. It might not work properly and it might be modified or removed in a future release.

Attribute Values
ValueDescription
noneDefault value. No transition.
fadeFade in/out.
fade-leftSlide from left and fade in/out.
fade-rightSlide from right and fade in/out.
fade-upSlide from top and fade in/out.
fade-downSlide from bottom and fade in/out.
slide-leftSlide from left.
slide-rightSlide from right.
slide-upSlide from top.
slide-downSlide from bottom.
zoom-inZoom in.
zoom-outZoom out.
3d-flip-left3D flip from left.
3d-flip-right3D flip from right.

Transition Duration

Specifies the transition duration in milliseconds.

The default value is: 300.

note

This attribute is experimental. It might not work properly and it might be modified or removed in a future release.

Attribute Values
ValueDescription
<integer>Duration in milliseconds.

Transition Delay

Specifies the transition delay in milliseconds.

The default value is: 0.

note

This attribute is experimental. It might not work properly and it might be modified or removed in a future release.

Attribute Values
ValueDescription
<integer>Delay in milliseconds.

Opacity

Sets the object's opacity. Opacity is the degree to which content behind an object is hidden.

The default value is: 1.0.

Attribute Values
ValueDescription
0The object is fully transparent.
>0.0, <1.0The object is translucent (content behind the element can be seen).
1.0Default value. The object is fully opaque.

Rotation

Specifies the degrees by which the object is rotated. A positive number rotates it clockwise, while a negative value rotates it counter-clockwise.

The default value is: 0.

CSS Class

Specifies a CSS Class that applies to the object, useful to customize its appearance. Custom CSS Classes are specified within the custom.css file.

Margin

Specifies the margin of the object. The margin is the space outside the object's border.

note

This attribute is experimental. It might not work properly and it might be modified or removed in a future release.

Attribute Values
ValueDescriptionExample
<int>Specify the margin in pixels for all sides of the object.
<top> <right> <bottom> <left>Specify the margin in pixels for each side of the object.10 20 30 40

View Scale

Specifies the scale of the object. The scale is the ratio between the object's size and the size of the view it is contained in.

The default value is: 1.0.

note

This attribute is experimental. It might not work properly and it might be modified or removed in a future release.

Attribute Values
ValueDescription
<float>Specify the scale for both width and height of the object.

Meta

Comment

Specifies a comment, visible only in the Project Editor. It can be used to add a note or a tag to the object. The filter in the object's SELECT panel applies to the comment as well.

note

This attribute is static. Its value can't be changed dynamically with a uiSet command or with a value binding.

Exclude

Excludes the object from the UI. Useful to temporarily hide an object without deleting it. Different from the "Visible" attribute, which hides the object in the UI but keeps it in the project, allowing it to be shown again with a UISet.

The default value is: false.

note

This attribute is static. Its value can't be changed dynamically with a uiSet command or with a value binding.

Attribute Values
ValueDescription
falseDefault value. Object is included in the UI.
trueObject is excluded from the UI.