-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (84 loc) · 2.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Magiz demo</title>
<style>
html,
body {
margin: 0;
height: 100%;
}
#contents {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
}
.demo {
display: flex;
flex-direction: column;
text-decoration: none;
width: 320px;
margin-bottom: 36px;
padding: 12px;
border-radius: 9px;
cursor: pointer;
color: #26f;
transition: 0.6s;
}
.demo p {
color: #000;
margin-bottom: 3px;
}
.demo i {
margin: 0;
font-size: small;
color: #333;
}
.demo:hover {
box-shadow: 0 3px 12px #333;
}
#info p {
margin: 0;
font-size: small;
width: 320px;
}
#info a {
text-decoration: none;
color: #26f;
}
</style>
</head>
<body>
<div id="contents">
<a href="./demo-another-marseille/index.html" class="demo">
<b>Another Marseille</b>
<p>将建筑大师柯布西耶设计的马赛公寓转换成参数化样式</p>
<i>
Convert the Marseille apartment designed by famous architect Corbusier into a parametric
style
</i>
</a>
<a href="./demo-city/index.html" class="demo">
<b>Infinite city</b>
<p>1917栋参数化建筑的城市场景</p>
<i>The urban scene of 1917 parameterized buildings</i>
</a>
<a href="./2024-whgydx/index.html" class="demo">
<b>武汉工业大学 建筑编码课程 2024</b>
<p>A small city scene created by students</p>
<i>The urban scene of 1917 parameterized buildings</i>
</a>
<div id="info">
<p>Author: 周 曦</p>
<p>Wechat: Ketchup</p>
<p>E-mail: [email protected]</p>
<p>NPM: <a href="https://www.npmjs.com/package/magiz">www.npmjs.com/package/magiz</a></p>
<p>Website: <a href="http://architech.fun">architech.fun</a></p>
</div>
</div>
</body>
</html>