1{ 2 "template": { 3 "type": "div", 4 "attr": {}, 5 "classList": [ 6 "container" 7 ], 8 "children": [ 9 { 10 "type": "div", 11 "attr": {}, 12 "classList": [ 13 "row" 14 ], 15 "children": [ 16 { 17 "type": "clock", 18 "attr": { 19 "hourwest": "{{timeRegion}}", 20 "clockconfig": "{{clockconfig}}" 21 }, 22 "classList": [ 23 "clk" 24 ], 25 "style": { 26 "fontFamly": "{{fontFamily}}" 27 } 28 } 29 ] 30 } 31 ] 32 }, 33 "styles": { 34 ".container": { 35 "flexDirection": "column", 36 "alignItems": "center" 37 }, 38 ".clk": { 39 "width": "350px", 40 "height": "350px" 41 }, 42 ".row": { 43 "flexDirection": "row", 44 "alignItems": "center", 45 "justifyContent": "space-around", 46 "borderRadius": "40px", 47 "paddingTop": "20px", 48 "paddingBottom": "20px", 49 "backgroundColor": "#4169E1" 50 } 51 }, 52 "actions": {}, 53 "data": { 54 "timeRegion": "8", 55 "fontFamily": "Courier", 56 "clockconfig": { 57 "digitRadiusRatio": 0.7, 58 "digitSizeRatio": 0.08, 59 "face": "common/clock_widget.png", 60 "hourHand": "common/clock_widget_hour.png", 61 "minuteHand": "common/clock_widget_minute.png", 62 "secondHand": "common/clock_widget_second.png", 63 "faceNight": "common/black_clock_widget.png", 64 "hourHandNight": "common/black_clock_widget_hour.png", 65 "minuteHandNight": "common/black_clock_widget_minute.png", 66 "digitColor": "#000000", 67 "digitColorNight": "#FFFFFF" 68 } 69 } 70}