-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntro1_cj.html
More file actions
113 lines (113 loc) · 3.32 KB
/
Copy pathIntro1_cj.html
File metadata and controls
113 lines (113 loc) · 3.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" href="./SystemLogo.png">
<title>Ghvswebtpc介绍</title>
<style>
body{
background-color: rgb(230,230,230);
}
#div_id1{
position: fixed;
top: 20%;
left: 50%;
transform: translateX(-50%);
background-color: rgba(255,255,255,0.4);
width: 50%;
height: 60%;
border-radius: 0px;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
#text1{
position: fixed;
top: 5%;
left: 50%;
transform: translateX(-50%);
font-weight: 200;
font-size: 50px;
background-color: black;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
#text2{
position: fixed;
top: -2.5%;
left: 50%;
transform: translateX(-50%);
font-weight: 200;
font-size: 50px;
color: rgb(0, 0, 0);
}
#text3{
position: fixed;
top: 10%;
left: 50%;
transform: translateX(-50%);
color: rgb(0, 0, 0);
font-size: 23px;
font-weight: 200;
width: 320px;
word-break: break-all;
line-height: 1.5;
}
#btn1{
position: fixed;
top: 90%;
left: 25%;
width: 25%;
height: 8%;
color: white;
border: none;
border-radius: 0px;
background-color:rgb(212,0,255);
transition: background-color 0.5s ease;
font-size: 15px;
}
#btn1:hover{
background-color:rgb(233,143,255);
}
#btn2{
position: fixed;
top: 90%;
left: 55%;
width: 25%;
height: 8%;
color: white;
border: none;
border-radius: 0px;
background-color: rgb(212,0,255);
transition: background-color 0.5s ease;
font-size: 15px;
}
#btn2:hover{
background-color: rgb(233,143,255);
}
</style>
<script>
document.addEventListener("contextmenu",function(No_BrYM) {
No_BrYM.preventDefault()
})
</script>
</head>
<body>
<h1 id="text1">Ghvswebtpc</h1>
<div id="div_id1">
<h1 id="text2">简介</h1>
<p id="text3">
Ghvswebtpc是GitHub:T-PageCode的网页模拟系统项目<br>
Gh=GitHub(在GitHub发布)<br>
vs=Visual Studio和Visual Studio Code(这是编写的工具)<br>
web=网页体验(只需要在浏览器访问网站)<br>
tpc=GitHub名称T-PageCode缩写。<br>
这与名称相似的网站和公司,软件等没有任何关系。<br>
<span style="font-size: 15px;opacity: 0.7;font-weight: 200;">T-PageCode是GitHub用户名</span>
</p>
<button id="btn1" onclick="window.location.href='index_cj.html'">上一页</button>
<button id="btn2" onclick="window.location.href='Intro2_cj.html'">下一页</button>
</div>
</body>
</html>