移動混合開發之android檔案管理-->flexbox,webFont。

來源:互聯網
上載者:User

標籤:

增加操作欄,使用felxbox置中,felx相關參考網址:http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html

使用webFont添加表徵圖,webFont為http://fontello.com/

index.html:

<!DOCTYPE html><!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.  You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. --><html><head>    <!--     Customize this policy to fit your own app‘s needs. For more guidance, see:     https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy     Some notes:     * gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication     * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly     * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:     * Enable inline JS: add ‘unsafe-inline‘ to default-src     -->    <meta http-equiv="Content-Security-Policy"          content="default-src ‘self‘ data: gap: https://ssl.gstatic.com ‘unsafe-eval‘; style-src ‘self‘ ‘unsafe-inline‘; media-src *">    <meta name="format-detection" content="telephone=no">    <meta name="msapplication-tap-highlight" content="no">    <meta charset="utf-8">    <meta name="viewport"          content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">    <!--引入webFont,fontello.css裡面已經定義好font-family,只是需要設定類名,單獨寫css控制位置即可-->    <link rel="stylesheet" type="text/css" href="./css/css/fontello.css">    <link rel="stylesheet" type="text/css" href="css/index.css"><br>    <!----引入jQuery----!>    <!--引入滑動第三方庫,讓列表滑動-->    <script type="text/javascript" src="js/jquery-2.2.4.min.js"></script>    <script type="text/javascript" src="js/iscroll-lite.js"></script>    <script type="text/javascript" src="cordova.js"></script>    <script type="text/javascript" src="js/index.js"></script>    <title>Hello World</title></head><body><div id="log"></div><div class="head">    極客瀏覽器</div><!--自訂布局,沒有使用第三方架構--><div class="content">    <div class="nav">        <div id="current-dir"></div>        <div id="upper">上一級</div>    </div>    <div class="list" id="file-list">        <ul >            <li class="t">                <div class="file-icon"></div>                <div class="file-name">This is file name1</div>            </li>        </ul>    </div>    <div class="opeator">        <!--寫好類名,類名可查看fontello下載的demo-->        <a class="icon-trash-empty">建立檔案夾</a>        <a class="icon-server">複製</a>        <a class="icon-html5">刪除</a>    </div></div></body></html>

  

index.css

/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements.  See the NOTICE file * distributed with this work for additional information * regarding copyright ownership.  The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License.  You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied.  See the License for the * specific language governing permissions and limitations * under the License. */* {    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */}.head{    position:absolute;    left:0;    right:0;    top:0;    height:2rem;    line-height: 2rem;    background-color:orange;    padding-left:.3rem;    color: white;    text-align: center;}.content{    position:absolute;    top:2rem;    bottom:0;    left:0;    right:0;    overflow: hidden;}.content .nav{    position: absolute;    top: 0;    height: 1.5rem;    left: 0;    right: 0;    background: #efefef;}.content .list{    position: absolute;    top: 1.5rem;    left: 0;    right: 0;    bottom: 3rem;    background: #adadad;    overflow: hidden;}.opeator{    position: absolute;    bottom: 0;    left: 0;    right: 0;    height: 3rem;    /*容器使用 display:felx屬性*/    display:flex;    display: -webkit-flex; /*  */}.opeator a{    /*使用felx:1讓內容平均分布*/    flex:1;    -webkit-box-flex: 1;    /*把webFont當作字型處理,字型置中*/    text-align: center;}.content ul{    list-style: none;    padding: 0;    margin: 0;}.content ul li{    position: relative;    height: 4rem;    line-height: 2rem;    padding-left: .5rem ;    border-bottom: 1px solid gray;    background: white;}.content ul li.touchInside{    background: #efefef;}.content ul li .file-icon{    position: absolute;    background: url("../img/file.png") no-repeat center;    background-size: 1.2rem 1.2rem;    width: 1.2rem;    height: 1.2rem;    left: 1rem;    top:.3rem;}.content ul li .file-name{    position: absolute;    line-height: 2rem;    left: 3.2rem;}.t{    display: none;}#upper{position: absolute;right: 15px;top: 5px;color: blue;}#log{    width: 200px;    height: 30px;    color: red;    float: right;}/*重新定義表徵圖位置*/.trash:before{    display: block;    padding-top: 10px;    /*這個會使字型不置中,直接指定fontSize就好*/    font-size: 1.2rem;}.icon-server:before{    display: block;    padding-top: 10px;    /*這個會使字型不置中,直接指定fontSize就好*/    font-size: 1.2rem;}.icon-html5:before{    display: block;    padding-top: 10px;    /*這個會使字型不置中,直接指定fontSize就好*/    font-size: 1.2rem;}

  

  index.js 暫無變化,參考上一篇隨筆

 

移動混合開發之android檔案管理-->flexbox,webFont。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.