zoukankan      html  css  js  c++  java
  • 移动混合开发之文件管理工具栏

    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>
    <div id="dialog-overlay">
        <div id="title"></div>
        <div id="dialogContent">
            <!--注意采用div布局-->
            <div id="input-content">
                <input type="text" id="file-name-input" placeholder="输入文件夹名">
            </div>
            <!--注意采用div布局,这样css会简写很多-->
            <div id="btn-content">
                <a  class="btn" id="file-create">创建文件夹</a>
                <a class="btn"  id="file-cancel">取消</a>
            </div>
        </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; /*  */
    }
    
    a{
        -webkit-user-select: none;
        user-select: none;
    }
    a.touchInside{
        background: lightgray;
        color: whitesmoke;
    }
    .opeator a{
        /*使用felx:1让内容平均分布*/
        flex:1;
        -webkit-box-flex: 1;
        /*把webFont当作字体处理,字体居中*/
        text-align: center;
        text-decoration: none;
        display: block;
    
    }
    
    
    .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;
         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{
         200px;
        height: 30px;
        color: red;
        float: right;
    }
    
    /*重新定义图标位置*/
    .icon-trash-empty:before{
        display: block;
        padding-top: 10px;
        /*这个会使字体不居中,直接指定fontSize就好*/
        /* 1rem;*/
        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;
    }
    
    #dialog-overlay{
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.3);
    }
    
    #title{
        font-size: 1rem;
        height: 1rem;
        padding: .3rem;
        text-align: center;
    }
    
    #dialogContent{
        text-align: center;
        background: #efefef;
        height: 8rem;
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
    }
    
    #input-content{
        padding-top: 2rem;
        padding-bottom: 1rem;
    }
    
    #file-name-input{
         16rem;
        padding: .3rem .4rem;
        font-size: 1rem;
    }
    
    a.btn{
        background: lavender;
        border: solid 1px grey;
        border-radius: 5px;
        padding: 5px;
    }
    a.btn.touchInside{
        background: lightgray;
        color: whitesmoke;
    }
    
    #btn-content{
        text-align: center;
        padding: .3rem;
    }
    

      

    index.js

    /*
     * 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.
     */
    var app = {
        // Application Constructor
        initialize: function () {
            this.bindEvents();
        },
        // Bind Event Listeners
        //
        // Bind any events that are required on startup. Common events are:
        // 'load', 'deviceready', 'offline', and 'online'.
        bindEvents: function () {
            document.addEventListener('deviceready', this.onDeviceReady, false);
        },
        // deviceready Event Handler
        //
        // The scope of 'this' is the event. In order to call the 'receivedEvent'
        // function, we must explicitly call 'app.receivedEvent(...);'
        onDeviceReady: function () {
            //       app.receivedEvent('deviceready');
            $(function () {
                myDeviceReady();
            });
        },
        // Update DOM on a Received Event
        receivedEvent: function (id) {
            var parentElement = document.getElementById(id);
            var listeningElement = parentElement.querySelector('.listening');
            var receivedElement = parentElement.querySelector('.received');
            listeningElement.setAttribute('style', 'display:none;');
            receivedElement.setAttribute('style', 'display:block;');
    
            console.log('Received Event: ' + id);
        }
    };
    
    app.initialize();
    var myscroll = null;
    
    function myDeviceReady() {
        var size = $(window).width() / 18
        //设计字体宽度
        $('html').css('font-size', size);
        myscroll = new IScroll("#file-list");
        //打开文件夹
        window.resolveLocalFileSystemURL(cordova.file.externalRootDirectory, function (entry) {
            fileDealer.openEntry(entry);
        }, function () {
            alert('fail');
        });
    
        $('.icon-html5').bindtouch(function () {
           $('#dialog-overlay').css('display','block');
    
        });
    
        $('.icon-server').bindtouch(function () {
    
        })
    
        $('.icon-trash-empty').bindtouch(function () {
        });
    
        $('#file-create').bindtouch(function () {
           // val获取value值
            var fileName = $('#file-name-input').val();
            if (fileName.length ==0 || fileName == undefined){
                return;
            }
            var curEntry =   $('#current-dir').data('curEntry');
            console.log(curEntry);
            console.log(fileDealer);
            fileDealer.createFile(curEntry,fileName);
        });
        $('#file-cancel').bindtouch(function () {
           // alert('取消创建');
            $('#dialog-overlay').css('display','none');
        });
    }
    
    function fileHander() {
    
    }
    
    /*--------------------创建文件夹-------------*/
    
    fileHander.prototype.createFile = function (entry,filename) {
        console.log(1);
        entry.getDirectory('./'+filename,{create:true},function (dirEntry) {
            console.log('创建成功!');
            fileDealer.openEntry(dirEntry);
            $('#dialog-overlay').css('display','none');
        },function () {
            alert('创建失败!');
        });
    }
    
    /*-------------------打开文件夹---------------------*/
    fileHander.prototype.openEntry = function (entry) {
        //使用克隆方式时,重新更新页面不能用,$('#file-list ul ).html(");
        $('#file-list ul li.item').remove();
        var curren_dir =   $('#current-dir');
        curren_dir.text("当前目录:" + entry.name)
        curren_dir.data("curEntry",entry);
    
        $('#upper').bindtouch(
            function () {
                entry.getParent(function (entry) {
                    fileDealer.openEntry(entry);
                }, function () {
                    alert('get Parent Error');
                }
                );
            }
        );
    
        entry.createReader().readEntries(function (entries) {
                sortEntrise(entries);
                for (var i = 0; i < entries.length; i++) {
                    var entry = entries[i];
                    //采用克隆方式,比较方便
                    var jObjectLi = $('.t').clone().removeClass('t').addClass('item');
                    jObjectLi.find('.file-name').text(entry.name);
                    jObjectLi.data('entry', entry);
                    $('.list ul').append(jObjectLi);
                    jObjectLi.bindtouch(function () {
                        var liEntry = $(this).data('entry');
                        if (!liEntry.isFile) {
                            fileDealer.openEntry(liEntry);
                        }
                    });
                }
                myscroll.refresh();
            },
            function (error) {
                alert(error);
            });
    }
    
    var fileDealer = new fileHander();
    
    
    //将文件和文件夹分离
    function sortEntrise(entries) {
        entries.sort(function (a, b) {
            if (a.isFile && !b.isFile) {
                return 1;
            } else if (!a.isFile && b.isFile) {
                return -1;
            } else {
                return a.name < b.name;
            }
        })
    }
    
    
    /*------------添加点击事件--------------*/
    //扩展为jQuery自定义函数
    
    $.fn.bindtouch = function (cb) {
        attachMyEvent($(this), cb);
    };
    
    
    function attachMyEvent(sr, cb) {
        //click事件反应时间为300毫秒,因此取消click采用手动
        //手指按下,若手指移动,则触发取消
        sr.unbind();
        var point_one = {};
        var point_two = {};
        sr.on('touchstart', function (event) {
            var me = $(this)
            me.data('touch', true);
            var touch = event.originalEvent.targetTouches[0];
            point_one.x = touch.pageX;
            point_one.y = touch.pageY;
            me.addClass('touchInside');
        });
    
        sr.on('touchend', function () {
            var me = $(this);
            if (me.data('touch') == true) {
                //改变回调函数的this指针为sr
                //触发回调函数
                cb.bind(this)();
            }
            me.removeClass('touchInside')
            me.data('touch', false);
        });
    
        sr.on('touchmove', function (event) {
            var me = $(this);
            var touch = event.originalEvent.targetTouches[0];
            point_two.x = touch.pageX;
            point_two.y = touch.pageY;
            if (me.data('touch')) {
                //华为手机测试,没有滑动也会触发touchmove,所以加测滑动距离,来判断是否滑动
                var distane = getPointsDistance(point_one, point_two);
                console.log(distane);
                $('#log').text(distane);
                if (distane > 4) {
                    me.data('touch', false);
                    me.removeClass('touchInside')
                }
            }
    
            // alert(2);
        });
    }
    //计算两点之间距离
    function getPointsDistance(p1, p2) {
        var xDistance = Math.abs(p1.x - p2.x);
        var yDistance = Math.abs(p1.y - p2.y);
        var distance = Math.sqrt(xDistance * xDistance + yDistance * yDistance);
        return distance;
    }
    

      

  • 相关阅读:
    在线音视频(MP3/MP4)测试文件
    jQuery 找包含内容的节点,但不搜索子节点
    bash 脚本小练习:查看 git 提交对应的提交数
    桌面应用开发的日子(二):实现文件资源管理列表树加载
    桌面应用开发的日子(一):初识WPF
    Winform同一数据源多个控件保持同步
    Windows Form中DataGridView的基本玩法
    jsp第七周作业
    jsp第五周作业
    jsp第六周作业
  • 原文地址:https://www.cnblogs.com/yqlog/p/5616243.html
Copyright © 2011-2022 走看看