Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
3ac727ef
Commit
3ac727ef
authored
May 23, 2022
by
Tijmen de Mes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added html for loading screen
parent
14935faa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
0 deletions
+88
-0
loading.html
resources/chat/loading.html
+9
-0
loading.style
resources/chat/loading.style
+79
-0
No files found.
resources/chat/loading.html
0 → 100644
View file @
3ac727ef
<div
class=
"loading-container"
>
<div
class=
"inner-container"
>
<div
class=
"loading-spinner"
>
<div></div><div></div>
</div>
<div>
Loading Messages
</div>
</div>
</div>
resources/chat/loading.style
0 → 100644
View file @
3ac727ef
.loading-container {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgb(225, 225, 225);
z-index: 1;
opacity: .7;
color: #0066cc;
margin: 0 auto;
text-align: center;
}
.inner-container {
margin: auto;
font-size: 20px;
font-weight: 500;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
position: absolute;
left: 0;
right: 0;
}
#loading.hidden {
visibility: hidden;
}
.loading-spinner {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.loading-spinner div {
position: absolute;
border: 4px solid #0066cc;
opacity: 1;
border-radius: 50%;
animation: loading-spinner 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading-spinner div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes loading-spinner {
0% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 0;
}
4.9% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 0;
}
5% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: 0px;
left: 0px;
width: 72px;
height: 72px;
opacity: 0;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment