1 Star 0 Fork 0

endless / apiApp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1.html 4.35 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
endless 提交于 2021-05-19 11:50 . first commit
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<title>底部导航</title>
<link rel="stylesheet" type="text/css" href="./css/api.css"/>
<link rel="stylesheet" type="text/css" href="./css/style.css"/>
<style>
header{ background-color: #f2f2f2; }
header ul li { height: 50px; line-height: 50px; text-align: center; display: none; color: #323237; position: relative;font-size: 18px; }
header ul li.active{ display: block; }
#footer{ background-color: #f2f2f2; }
#footer ul li{ padding-top: 36px; padding-bottom: 4px; background: url() no-repeat center 2px; background-size: auto 30px; text-align: center; }
#footer ul li.active{ color: #6ab494; }
#footer ul li:nth-child(1){ background-image: url(./image/bottombtn0101.png); }
#footer ul li:nth-child(2){ background-image: url(./image/bottombtn0201.png); }
#footer ul li:nth-child(3){ background-image: url(./image/bottombtn0301.png); }
#footer ul li:nth-child(4){ background-image: url(./image/bottombtn0401.png); }
#footer ul li:nth-child(1).active{ background-image: url(./image/bottombtn0102.png); }
#footer ul li:nth-child(2).active{ background-image: url(./image/bottombtn0202.png); }
#footer ul li:nth-child(3).active{ background-image: url(./image/bottombtn0302.png); }
#footer ul li:nth-child(4).active{ background-image: url(./image/bottombtn0402.png); }
.flex-con{
overflow: auto
}
</style>
</head>
<body>
<div id="wrap" class="flex-wrap flex-vertical">
<header>
<ul>
<li class="border-b active" >当前签到情况</li>
<li class="border-b" >考勤记录</li>
<li class="border-b" >签到时间</li>
<li class="border-b" >个人</li>
</ul>
</header>
<div id="main" class="flex-con">
</div>
<div id="footer" class="border-t">
<ul class="flex-wrap" >
<li tapmode="hover" onclick="randomSwitchBtn( this );" class="flex-con active" >首页</li>
<li tapmode="hover" onclick="randomSwitchBtn( this );" class="flex-con" >历史</li>
<li tapmode="hover" onclick="randomSwitchBtn( this );" class="flex-con" >时间</li>
<li tapmode="hover" onclick="randomSwitchBtn( this );" class="flex-con" >个人</li>
</ul>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="script/api.js"></script>
<script type="text/javascript">
apiready = function () {
$api.fixStatusBar( $api.dom('header') );
api.setStatusBarStyle({
style: 'dark',
color: '#6ab494'
});
funIniGroup();
}
function funIniGroup(){
var eHeaderLis = $api.domAll('header li'),
frames = [];
for (var i = 0,len = eHeaderLis.length; i < len; i++) {
frames.push( {
name: 'frame'+i,
url: './html/frame'+i+'.html',
bgColor : 'rgba(0,0,0,.2)',
bounces:false
} )
}
api.openFrameGroup({
name: 'group',
scrollEnabled: false,
rect: {
x: 0,
y: $api.dom('header').offsetHeight,
w: api.winWidth,
h: $api.dom('#main').offsetHeight
},
index: 0,
frames: frames
}, function (ret, err) {
});
}
// 随意切换按钮
function randomSwitchBtn( tag ) {
if( tag == $api.dom('#footer li.active') )return;
var eFootLis = $api.domAll('#footer li'),
eHeaderLis = $api.domAll('header li'),
index = 0;
for (var i = 0,len = eFootLis.length; i < len; i++) {
if( tag == eFootLis[i] ){
index = i;
}else{
$api.removeCls(eFootLis[i], 'active');
$api.removeCls(eHeaderLis[i], 'active');
}
}
$api.addCls( eFootLis[index], 'active');
$api.addCls( eHeaderLis[index], 'active');
api.setFrameGroupIndex({
name: 'group',
index: index
});
}
</script>
1
https://gitee.com/endlesshh/api-app.git
git@gitee.com:endlesshh/api-app.git
endlesshh
api-app
apiApp
master

搜索帮助