-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2021.3.25.滑动名片
134 lines (134 loc) · 3.95 KB
/
2021.3.25.滑动名片
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
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>山羊の前端小窝</title>
<style>
body{
background-color: rgb(204, 212, 230);
display: flex;
justify-content: center;
}
.a{
position: relative;
width: 700px;
height: 400px;
border: #fff 10px solid;
background-color: rgb(120,140,200);
top: 120px;
border-radius: 20px;
overflow: hidden;
}
.b{
position: absolute;
width: 200px;
height: 300px;
left: 0;
margin: 75px 50px;
transition: 1s;
}
.b a{
text-decoration: none;
color: #fff;
font: 900 28px '';
}
.b h2{
/* 鼠标放开时的动画,第一个值是动画的过渡时间
第二个值是延迟一秒后执行动画 */
transition: .5s 1s;
opacity: 0;
color: rgb(30,210,200);
}
.b span{
transition: .5s 1s;
color: #fff;
font: 500 15px '';
position: absolute;
top: 70px;
}
.c{
position: absolute;
top: -130px;
right: -240px;
}
.d,.e{
position: absolute;
right: calc(var(--i)*100px);
width: calc(var(--w)*40px);
height: 500px;
overflow: hidden;
border-radius: 100px;
transform: rotateZ(220deg) translate(0,0);
background: rgb(240,220,150);
transition: .5s .5s;
}
.d:nth-child(2){
background: rgb(240,190,230);
}
.e{
left: -470px;
top: -140px;
width: 70px;
background-color: rgb(90,220,150);
}
.a:hover .c div{
/* 设置延迟动画 */
transition: .5s calc(var(--i)*.1s);
/* 移动的轨迹 */
transform: rotateZ(220deg) translate(-200px,400px);
}
.a:hover .b{
transition: 1s .5s;
left: 370px;
}
.a:hover .b span{
transition: 1s .5s;
top: 105px;
}
.a:hover .b h2{
transition: 1s .5s;
opacity: 1;
}
.f{
width: 250px;
height: 250px;
position: absolute;
background-image: url("goat.png");
background-size: cover;
margin: 70px;
opacity: 0;
transition: .5s;
}
.a:hover .f{
transition: 1s 1.3s;
opacity: 1;
}
</style>
</head>
<body>
<!-- 名片分三大块
最外层的一块a
文字一大块b
平面圆柱一块c -->
<div class="a">
<div class="b">
<a href="#">山羊の前端小窝</a>
<h2>WX:Sod-of-goat</h2>
<span>I'm a front-end developer enthusiast,</br>I'm learning new knowledge every day to share with you,<br/>I hope in the days to come<br/>Keep going!!</span>
</div>
<div class="c">
<!-- --i是用来计算平面圆柱的动效延迟和距离的
--w则是用来计算平面圆柱的宽度 -->
<div class="d" style="--i:1;--w:1.5"></div>
<div class="d" style="--i:2;--w:1.6"></div>
<div class="d" style="--i:3;--w:1.4"></div>
<div class="d" style="--i:4;--w:1.7"></div>
<div class="e" style="--i:1"></div>
</div>
<!-- 设置二维码 -->
<div class="f"></div>
</div>
</body>
</html>