-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
52 lines (49 loc) · 1.45 KB
/
index.php
File metadata and controls
52 lines (49 loc) · 1.45 KB
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
<?php
if(!isset($_SESSION))
{
session_start();
}
header("Content-Type: text/html; charset=utf-8");
require_once("connMysql.php");
include_once("locaction.php");
?>
<!DOCTYPE html>
<html lang="zh-Hant-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimal-ui initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<title>綠色之夢</title>
<!-- <link rel="stylesheet" href="css/reset.css"> -->
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body>
<img src="images/BG1.jpg" class="bg">
<div id="page-wrap">
<div id="mid-conent">
<br>
<h1>綠色之夢</h1>
<p>當代臺灣自然書寫特展</p>
<div id="circle">
<nav class="circle-nav theme-circle-nav">
<!-- <ul>
<li><a href="area1.php">展區介紹</a></li>
<li><a href="#">平面圖</a></li>
<li><a href="#">數據分析</a></li>
<li><a href="#">路線分析</a></li>
</ul> -->
<p class="open-circle"><span><a href="introduce.php">click</a></span></p>
</nav>
</div>
</div>
</div>
<script src="js/jquery-2.1.1.min.js"></script>
<script>
$(function(){
$(".open-circle").on("click",function(){
$(".circle-nav ul").stop().fadeToggle();
});
});
</script>
</body>
</html>