-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1010 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>She‘s Friends</title>
<link rel="stylesheet" href="gallery.css">
</head>
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<body>
<div class="wrap" id="wrap">
<div class="photo photo-front " onclick="turn(this)" id="photo_{{index}}"><!--控制2D位置、旋转-->
<div class="photo-wrap"><!--控制3D翻转-->
<div class="side side-front">
<p class="image">
<img src="img/{{img}}" alt="img/{{img}}">
</p>
<p class="caption">{{caption}}</p>
</div>
<div class="side side-back">
<p class="desc">{{desc}}</p>
</div>
</div>
</div>
</div>
<script src="img/data.js"></script>
<script src="gallery.js"></script>
</body>
</html>