加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
catalog.html 2.53 KB
一键复制 编辑 原始数据 按行查看 历史
李耀 提交于 2018-08-31 17:46 . 初始化blog的静态页面
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>闲言轻博客模板 v1.0 页面目录</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="fly,layui,前端社区">
<meta name="description" content="Fly社区是模块化前端UI框架Layui的官网社区,致力于为web开发提供强劲动力">
<link rel="stylesheet" href="./res/layui/css/layui.css">
<link rel="stylesheet" href="./res/css/global.css">
</head>
<body id="bodyId">
<h1 style="position: absolute; width:100%; text-align: center; top: 20px; left: 0; font-size: 20px; color: #333;">
基于 layui 的极简社区页面模版:Fly Template v3.0 所有页面目录
</h1>
<div class="layui-container">
<table class="layui-table layui-text">
<colgroup>
<col width="150">
<col>
</colgroup>
<thead>
<tr>
<th>页面</th>
<th>文件</th>
</tr>
</thead>
<tbody>
<tr>
<td>首页</td>
<td><a href="html/index.html" target="_blank">index.html</td>
</tr>
<tr>
<td>详情</td>
<td><a href="html/details.html" target="_blank">details.html</td>
</tr>
<tr>
<td>发表评论</td>
<td><a href="html/comment.html" target="_blank">comment.html</td>
</tr>
<tr>
<td>留言</td>
<td><a href="html/message.html" target="_blank">message.html</td>
</tr>
<tr>
<td>关于</td>
<td><a href="html/about.html" target="_blank">about.html</td>
</tr>
<tr>
<td>404</td>
<td><a href="html/404.html" target="_blank">404.html</td>
</tr>
</tbody>
</table>
<img id="imgNode"></img>
</div>
<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_30088308'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "w.cnzz.com/c.php%3Fid%3D30088308' type='text/javascript'%3E%3C/script%3E"));</script>
</body>
<script>
var bodyId = document.getElementById("bodyId");
bodyId.onclick = function(event){
var p1 = document.createElement("p");
var txt1 = document.createTextNode("2017");
p1.appendChild(txt1);
var parent = document.getElementsByTagName("article")[0];
var p2 = document.getElementsByTagName("p")[0];
parent.insertBefore(p1,p2);
p1.setAttribute("style","background-color:blue;color:red;width:100px;height:200px")
}
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化