Ajax Loader
×
HTML
<div class="svg-wrapper">
1
<div class="svg-wrapper">
2
  <svg height="60" width="320" xmlns="http://www.w3.org/2000/svg">
3
    <rect class="shape" height="60" width="320" />
4
    <div class="text">ZACH SAUCIER</div>
5
  </svg>
6
</div>
 
CSS
html, body {
1
html, body {
2
  background: rgb(20,20,20);
3
  text-align: center;
4
  height: 100%;
5
  overflow: hidden;
6
}
7
.svg-wrapper {
8
  position: relative;
9
  top: 50%;
10
  transform: translateY(-50%);
11
    margin: 0 auto;
12
  width: 320px;  
13
}
14
.shape {
15
  stroke-dasharray: 140 540;
16
  stroke-dashoffset: -474;
17
  stroke-width: 8px;
18
  fill: transparent;
19
  stroke: #19f6e8;
20
  border-bottom: 5px solid black;
21
  transition: stroke-width 1s, stroke-dashoffset 1s, stroke-dasharray 1s;
22
}
23
.text {
24
  font-family: 'Roboto Condensed';
25
  font-size: 22px;
26
  line-height: 32px;
27
  letter-spacing: 8px;
28
  color: #fff;
29
  top: -48px;
30
  position: relative;
31
}
32
.svg-wrapper:hover .shape {
33
  stroke-width: 2px;
34
  stroke-dashoffset: 0;
35
  stroke-dasharray: 760;
36
}
 

Untitled

CSSDeck G+