-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclock.elm
60 lines (45 loc) · 1.22 KB
/
clock.elm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import Html exposing (Html, button)
import Svg exposing (..)
import Svg.Attributes exposing (..)
import Time exposing (Time, second)
import Html.Events exposing (onClick)
main =
Html.program
{ init = init
, view = view
, update = update
, subscriptions = subscriptions
}
--MODEL
type alias Model = Time
init : (Model, Cmd Msg)
init =
(0, Cmd.none)
--UPDATE
type Msg
= Tick Time
update : Msg -> Model -> (Model, Cmd Msg)
update msg model =
case msg of
Tick newtime ->
(newtime, Cmd.none)
--SUNSCRIPTIONS
subscriptions : Model -> Sub Msg
subscriptions model =
Time.every second Tick
--VIEW
view : Model -> Html Msg
view model =
let
angle =
turns (Time.inMinutes model)
handX =
toString (50 + 40 * cos angle)
handY =
toString (50 + 40 * sin angle)
in
svg [ viewBox "0 0 100 100", width "300px" ]
[ circle [cx "50", cy "50", r "45", fill "#0B&9CE"] []
, line [ x1 "50", y1 "50", x2 handX, y2 handY, stroke "#023963" ] []
--, button [] [ onClick ]
]