index.html
<!DOCTYPE html>
憨憨憨憨憨程序员学的前端例子~
憨憨憨憨憨程序员学的前端例子~
</div>
</section>
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
style.css
@import url(' https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,700,900&display=swap');
*
{
margin:0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
section
{
position: relative;
width: 100%;
height: 100vh;
background: #222;
overflow: hidden;
}
section .textBox
{
position:absolute;
width: 100%;
height: 100vh;
overflow: hidden;
background: #333;
clip-path: polygon(0 0,50% 0,50% 100%,0% 100%);
}
section h2,
section .textBox h2{
position: absolute;
width: 100%;
text-align: center;
font-size: 12em;
line-height: 1em;
color: #0488f5;
-webkit-text-stroke: 0px #0876cf;
cursor: pointer;
}
section h2
{
-webkit-text-stroke: 2px #0876cf;
color: transparent;
}
.skew1
{
position: relative;
top: 50px;
transform:skewY(20deg);
}
.skew2
{
position: relative;
top: 50px;
transform:skewY(-20deg);
}
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
clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%); 使用多边形剪切路径创建一个从左上角到右下角的斜切形状。
-webkit-text-stroke: 0px #0876cf; 为文本添加蓝色边框(0像素宽度),使其变成透明文本并有边框效果。
cursor: pointer; 将鼠标悬停时的光标设置为指针,表示该元素可点击。
color: transparent; 将文本颜色设置为透明,使文本本身不可见,仅显示边框效果。
transform: skewY(20deg); 和 transform: skewY(-20deg); 分别使元素在Y轴方向上倾斜20度和-20度,产生斜切效果。