-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext-loading.html
More file actions
121 lines (92 loc) · 2.79 KB
/
text-loading.html
File metadata and controls
121 lines (92 loc) · 2.79 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<html>
<head>
<style>
body {
background: #f5f6f7;
font-family: sans-serif;
font-size: 13px;
}
.tr {
border: 1px solid #cfcfcf;
display: block;
position: relative;
float: left;
height: 30px;
background: #fff;
}
.tr:last-child {
border-top:0;
}
.td{
display: block;
float: left;
padding: 10px 20px;
border-right: 1px solid #eee;
width: 200px;
}
.td.number {
width: 20px;
}
@keyframes placeHolderShimmer{
0%{
background-position: -468px 0
}
100%{
background-position: 468px 0
}
}
.animated-background {
animation-duration: 1s;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
animation-name: placeHolderShimmer;
animation-timing-function: linear;
background: #f6f7f8;
background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
background-size: 800px 104px;
border-radius: 3px;
height: 10px;
width: 200px;
position: relative;
float: left;
display: block;
}
</style>
</head>
<body>
<div class="tr">
<div class="td number">
</div>
<div class="td">
<div>Tim Jones</div>
</div>
<div class="td">
</div>
<div class="td">
</div>
<div class="td">
</div>
<div class="td">
</div>
<div class="td">
</div>
</div>
<div class="tr">
<div class="td number">
</div>
<div class="td">
<div class="animated-background"></div>
</div>
<div class="td">
</div>
<div class="td">
</div>
<div class="td">
</div>
<div class="td">
</div>
<div class="td">
</div>
</div>
</body>
</html>