From 3d3d3072c8191781cd2cf1ae1a13e3c54583ecf6 Mon Sep 17 00:00:00 2001 From: xenofem Date: Fri, 29 May 2020 00:19:41 -0400 Subject: [PATCH 1/2] basic progress bar animation --- loading/index.html | 67 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 loading/index.html diff --git a/loading/index.html b/loading/index.html new file mode 100644 index 0000000..bab8106 --- /dev/null +++ b/loading/index.html @@ -0,0 +1,67 @@ + + + + + + +
+
+
+
+ 0% +
+ + + From cc53246d76f2c1286a0a8fbda2e8f976c1b61b8c Mon Sep 17 00:00:00 2001 From: xenofem Date: Fri, 29 May 2020 00:56:49 -0400 Subject: [PATCH 2/2] Add spinny and status messages --- loading/index.html | 83 ++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 80 insertions(+), 3 deletions(-) diff --git a/loading/index.html b/loading/index.html index bab8106..3bced40 100644 --- a/loading/index.html +++ b/loading/index.html @@ -31,7 +31,7 @@ background-color: red; } - #percentage { + #status { font-size: 25px; font-weight: bold; width: 100%; @@ -42,16 +42,84 @@ width: 540px; } } + + #logo { + height: 70px; + width: 70px; + margin: 10px; + } + .spin { + animation: spin 2s linear infinite; + } + @keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } + } + +
-
+
0%