-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.08 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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>万圣节</title>
<meta name="apple-touch-fullscreen" content="YES">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="pragram" content="no-cache">
<meta name="viewport" content="width=640, user-scalable=no, target-densitydpi=device-dpi">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div class="bg">
<img src="images/logo.png" class="logo">
<div class="index-img">
<a href="javascript:;"></a>
</div>
<!--弹层-->
<div class="tan-Box">
<a href="photo.html"><img src="images/see.png"></a>
</div>
</div>
<script src="js/jquery-1.10.2.js"></script>
<script>
$(function(){
$(".index-img a").hover(function(){
$(".tan-Box").show();
$(".index-img").hide();
});
})
</script>
</body>
</html>