123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!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">
- <meta name="format-detection"content="telephone=no">
- <title>index</title>
- <link rel="stylesheet" type="text/css" href="../../css/api.css"/>
- <link rel="stylesheet" href="../../css/projeck.css">
- <style media="screen">
- body,html{
- margin: 0;
- background: #fff;
- }
- .header-nav-items li{
- color: #bdc3c7;
- }
- .header-nav-items .active{
- color: #16a085;
- }
- .header-nav-items .active::after{
- background: #16a085;
- }
- </style>
- </head>
- <body>
- <div class="api_layout">
- <header class="header-login">
- <img class="backBtn" src="../../image/btn_back.png" alt="" tapmode onclick="backIndex()">
- <p class="api_text"></p>
- </header>
- </div>
- </body>
- </html>
- <script type="text/javascript" src="../../script/api.js"></script>
- <script type="text/javascript">
- apiready = function () {
- $api.fixStatusBar($api.dom('header') );
- api.parseTapmode();
- $api.html($api.dom('.api_text'), api.pageParam.title);
- openChangeFill(api.pageParam.id)
- }
- function openChangeFill(id) {
- api.openFrame({
- name: 'changeFill',
- url: 'changefillword.html',
- rect: {
- x: 0,
- x: 0,
- y: $api.dom('header').offsetHeight,
- w: api.winWidth,
- h: $api.winHeight
- },
- pageParam:{
- id:id
- },
- bounces: false,
- bgColor: 'rgba(0,0,0,0)',
- });
- }
- function backIndex() {
- api.closeWin();
- }
- </script>
|