-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (26 loc) · 888 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link href="main.css" rel="stylesheet">
<script src="app.js"></script>
<body>
<section class="image-grid">
<div class="image-cell is-collapsed">
<div class="image-basic">
<a href="#expand-jump-1">
<img id="expand-jump-1" class="basic-img" src="http://lorempixel.com/250/250/fashion/1"
alt="Fashion 1"/>
</a>
<div class="arrow-up"></div>
</div>
<div class="image-expand">
<a href="#close-jump-1" class="expand-close"></a>
<img class="image-large" src="http://lorempixel.com/400/400/fashion/1" alt="Fashion 1"/>
</div>
</div>
</section>
</body>
</html>