<!DOCTYPE html>
|
<html>
|
<head>
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<title>Aegis前端框架</title>
|
<meta charset="utf-8">
|
<meta http-equiv="Pragma" content="no-cache">
|
<meta http-equiv="Cache-Control" content="no-cache">
|
<meta http-equiv="Expires" content="0">
|
<meta name="viewport" content="user-scalable=no, initial-scale=1, width=device-width, height=device-height">
|
<meta name="format-detection" content="telephone=no">
|
<link href="../css/main.css" rel="stylesheet">
|
<script src="../js/jquery-1.7.2.min.js"></script>
|
|
<script type="text/javascript">
|
|
function pageTo(target) {
|
$("#content").attr("src", "./" + target);
|
}
|
|
|
$(document).ready(function() {
|
pageTo("demo.html");
|
});
|
|
</script>
|
</head>
|
|
<body>
|
<div class="header">
|
<div class="header-button" style="margin-left: 15%;" onclick="pageTo('home.html')">首页</div>
|
<div class="header-button" onclick="pageTo('demo.html')">控件Demo</div>
|
<div class="header-button" onclick="pageTo('api.html')">控件API</div>
|
<div class="header-button" onclick="pageTo('knowledge.html')">框架原理</div>
|
<div class="header-button" onclick="pageTo('project.html')">项目列表</div>
|
</div>
|
|
<div class="content">
|
<iframe id="content" width="100%" height="100%" style="overflow: hidden; border: none;">
|
|
</iframe>
|
</div>
|
</body>
|
</html>
|