-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjournal1.html
197 lines (191 loc) · 5.81 KB
/
journal1.html
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!--主页-->
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html" charset=gb2312>
<title>
前 端 设 计 与 审 美
</title>
<!--CSS设置-->
<style>
.background
{
opacity: 0.5;
}
.buttonImg img:hover
{
opacity: 1;
}
.buttonImg img
{
opacity: 0.8;
}
.specialFontInput
{
font-family: "华文行楷";
font-size: 25px;
}
#buttonHome
{
margin-right: 94%;
margin-left: 1%;
margin-top: 6%;
margin-bottom: 60%;
}
#journalContent
{
margin-right: 10%;
margin-left: 10%;
max-width: 1300px;
width: 100%;
height: 100%;
margin-top: 60%;
max-height: 3000px;
}
#specialFontButton
{
font-family: "华文行楷";
font-size: 30px;
opacity: 0.8;
}
#specialFontButton:hover
{
font-family: "华文行楷";
font-size: 30px;
opacity: 1;
}
#userPhoto img:hover
{
opacity: 1;
}
#userPhoto img
{
opacity: 0.8;
}
#journal1 img:hover
{
opacity: 1;
}
#journal1 img
{
opacity: 0.85;
}
#buttonPersonal
{
margin-left: 8%;
margin-right: 76%;
margin-top: 1%;
border-radius: 40%;
}
#buttonProjects
{
margin-left: 42%;
margin-right: 42%;
margin-top: 1%;
border-radius: 40%;
}
#buttonMail
{
margin-left: 76%;
margin-right: 8%;
margin-top: 1%;
border-radius: 40%;
}
#userPhoto
{
margin-right: 40%;
margin-left: 40%;
margin-top: 10%;
margin-bottom: 40%;
}
#journalsTable
{
max-width: 500px;
margin-left: 10%;
margin-right: 10%;
margin-top: 38%;
}
#journal1
{
margin-right: 89%;
margin-left: 1%;
margin-top: 30%;
}
.ellipseImg img
{
border-radius: 50%;
}
.commonImg img
{
border-radius: 5%;
}
</style>
</head>
<body>
<!--背景图片-->
<div class="background" id="background" style="position:absolute; z-index:-1;">
<img src="homepage_background.jpg" width="100%"/>
</div>
<!--用户头像-->
<div class="ellipseImg" id="userPhoto" style="position:absolute; z-index:0;">
<a href="personal.html">
<img src="photo.jpg" height="100%" width="100%"/>
</a>
</div>
<!--按钮-->
<div class="buttonImg" id="buttonPersonal" style="position:absolute; z-index:0;">
<a href="personal.html">
<img src="buttonPersonal.jpg" height="100%" width="100%" />
</a>
</div>
<div class="buttonImg" id="buttonProjects" style="position:absolute; z-index:0;">
<a href="projects.html">
<img src="buttonProjects.jpg" height="100%" width="100%" />
</a>
</div>
<div class="buttonImg" id="buttonMail" style="position:absolute; z-index:0;">
<a href="mailto:[email protected]?subject=test&[email protected]&body=use mailto xsx1996">
<img src="buttonMail.jpg" height="100%" width="100%" />
</a>
</div>
<!--日志-->
<div class="ellipseImg" id="journal1" style="position:absolute; z-index:0;">
<a href="journal1.html">
<img src="journal1.jpg" height="100%" width="100%"/><br>
</a>
<font size=4 face="华文行楷"> 前 端 设 计 与 审 美</font>
</div>
<div id="journalContent" style="position:absolute; z-index:0;">
<iframe src="前端设计与审美.txt" height="100%" width="100%"></iframe>
</div>
<!--日志链接列表-->
<div id="journalsTable" style="position:absolute; z-index:0;">
<form method="POST" align="center">
<table border="0" cellspacing="10" cellpadding="0" align=left>
<th colspan="2" height="60">
<font size=7 face="华文行楷">日志</font>
</th>
<tr>
<td>
<div align="left">1,
<a class="link" href="journal1.html" target="_blank" style="text-decoration: none">
前端设计与审美
</a>
</div>
</td>
<td align="right">
2016年6月30日
</td>
</tr>
</table>
</form>
</div>
<!--返回主界面按钮-->
<div class="buttonImg" id="buttonHome" style="position:absolute; z-index:0;">
<a href="index.html" class="ellipseImg">
<img src="buttonHome.jpg" height="100%" width="100%"/>
</a>
</div>
</body>
</html>