cloudroam
2024-11-29 2b98925a0c57e8fa901f51619c641af8c86382f6
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
.button-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 50px;
}
 
.border-svg {
  width: 100%;
  height: 100%;
}
 
.border-rect {
  fill: transparent;
  stroke: #3498db;
  stroke-width: 2;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s ease;
  
    
 
}
 
.button-container:hover .border-rect {
    animation: rotate 0.5s linear;
}
 
@keyframes rotate {
  0% {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dasharray: 800;
    stroke-dashoffset: 0;
  }
}
 
text {
  font-family: Arial, sans-serif;
  font-size: 18px;
  fill: #3498db;
}