From 9eea2e1cd2dd5fc6ea4f235f474bf0f2025a484f Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sat, 8 Oct 2022 20:09:45 +1100 Subject: Add TimeLine.vue Add timeline shift and zoom actions, and basic styling/animation Make App determine TimeLine dimensions (incl handling resizes) --- src/App.vue | 45 ++++++++- src/components/TimeLine.vue | 236 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 278 insertions(+), 3 deletions(-) create mode 100644 src/components/TimeLine.vue diff --git a/src/App.vue b/src/App.vue index f30339e..880a046 100644 --- a/src/App.vue +++ b/src/App.vue @@ -13,18 +13,57 @@ -
-
Content
+
+
diff --git a/src/components/TimeLine.vue b/src/components/TimeLine.vue new file mode 100644 index 0000000..9dcf7f8 --- /dev/null +++ b/src/components/TimeLine.vue @@ -0,0 +1,236 @@ + + + + + -- cgit v1.2.3