-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall.html
53 lines (46 loc) · 1.14 KB
/
all.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
<html>
<head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="all.js"></script>
<style type="text/css">
.wrapper {
width: 960px;
margin: 0 auto;
border-radius: 5px;
margin-top: 15px;
min-height: 150px;
overflow: hidden;
padding-bottom: 10px;
}
.shadow {
box-shadow: 0px 0px 5px 2px rgba(50, 50, 50, 0.25);
}
img {
max-width: 300px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
float: left;
}
a {
color: #333;
text-align: center;
display: block;
font-family: sans-serif;
text-decoration: none;
padding-top: 15px;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<a href="index.html">Animation</a>
<div class="wrapper shadow" id="one">
</div>
<div class="wrapper shadow" id="two">
</div>
</body>
</html>