-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
91 lines (81 loc) · 2.45 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
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="前端开发, web设计, 创意项目, 有趣网站, 开源资源, 分享灵感。">
<meta name="description" content="欢迎来到前端创意世界,探索100个令人兴奋的前端创意项目。这里汇集了100个有趣、创意的前端项目。探索各种设计和技术,激发创新,启发您的下一个项目。">
<title>100个创意项目</title>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?6bea71ca06e5111d48beb97f7a2d9dcf";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<style>
* {
margin: 0;
padding: 0;
}
h2 {
padding: 24px 0;
text-align: center;
}
a:hover,
a:visited,
a:link,
a:active {
text-decoration: none;
color: inherit;
}
img {
display: block;
}
main {
max-width: 1200px;
display: flex;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
main > a {
width: 24%;
font-size: 14px;
text-align: center;
border-radius: 4px;
cursor: pointer;
transition: all .36s linear;
}
main > a:hover {
box-shadow: 1px 1px 8px 1px #dcdcdc;
}
main > a > img {
width: 100%;
height: 120px;
object-fit: contain;
padding: 8px 0;
}
</style>
</head>
<body>
<div>
<h2>100个创意项目</h2>
<main>
<a href="./project/01-scratch-card" target="_blank">
<img src="./project/01-scratch-card/preview.png" alt="">
<p>01-刮刮乐</p>
</a>
<a href="./project/02-img-comparison" target="_blank">
<img src="./project/02-img-comparison/preview.gif" alt="">
<p>02-图片对比器</p>
</a>
</main>
</div>
</body>
</html>