移动混合开发之android文件管理新建文件和删除文件

今天经过一天超过8小时的实践,有很多CSS上的细节需要注意:

1,

/*注意是对before的操作*/
.content ul li .icon-check-empty:before{display: block;/*webFont设置其width和height时无效,只有设置font-size*//*width: 3rem;*//*height: 3rem;*/font-size: 1.5rem;position: absolute;top:0;left: 0;bottom: 0;padding: .75rem;
}

  

2.选择器的优先级

/*估计这个优先级没有 .down a{}的高,所以根本没执行a.btn{} >  .down a{} > .down a.btn{}
*/
/*.down a.btn{*//*background: lavender;*//*border: solid 1px grey;*//*border-radius: 5px;*//*padding: 5px;*/
/*}*/
.opeator a{/*使用felx:1让内容平均分布*/flex:1;-webkit-box-flex: 1;/*把webFont当作字体处理,字体居中*/text-align: center;text-decoration: none;display: block;}

 

3.动画的设置

需要设置一个初始状态和结束状态,

.opeator{position: absolute;bottom: 0;left: 0;right: 0;height: 3rem;/*容器使用 display:felx属性*/display:flex;display: -webkit-flex; /*  *//*注意是transform*/transition:-webkit-transform 0.3s ease-in;transform: translateY(0) translateZ(0);
}.opeator.down {transform: translateY(3rem) translateZ(0);
}

  

全部代码:

1.index.html

<!DOCTYPE html>
<!--Licensed to the Apache Software Foundation (ASF) under oneor more contributor license agreements.  See the NOTICE filedistributed with this work for additional informationregarding copyright ownership.  The ASF licenses this fileto you under the Apache License, Version 2.0 (the"License"); you may not use this file except in compliancewith the License.  You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless 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 ANYKIND, either express or implied.  See the License for thespecific language governing permissions and limitationsunder 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-policySome 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="icon-check-empty" id="check"></div><div class="file-icon"></div><div class="file-name">This is file name1</div></li></ul></div><div class="opeator" id="operator-nocheck"><!--写好类名,类名可查看fontello下载的demo--><a class="icon-plus">新建</a><a class="icon-info">详细</a></div><div class="opeator" id="operator-checked" style="display: none"><!--写好类名,类名可查看fontello下载的demo--><a class="icon-move">移动</a><a class="icon-docs">复制</a><a class="icon-trash-empty">删除</a></div><div class="opeator down" id="operator-down" ><a class="btn" id="confirm">确定</a><a class="btn" id="cancel">取消</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>

  

2.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; /*  *//*注意是transform*/transition:-webkit-transform 0.3s ease-in;transform: translateY(0) translateZ(0);
}.opeator.down {transform: translateY(3rem) translateZ(0);
}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: 3rem;border-bottom: 1px solid gray;background: white;
}.content ul li.touchInside{background: #efefef;
}/*注意是对before的操作*/
.content ul li .icon-check-empty:before{display: block;/*webFont设置其width和height时无效,只有设置font-size*//*width: 3rem;*//*height: 3rem;*/font-size: 1.5rem;position: absolute;top:0;left: 0;bottom: 0;padding: .75rem;
}
.content ul li .icon-ok-squared:before{display: block;/*webFont设置其width和height时无效,只有设置font-size*//*width: 3rem;*//*height: 3rem;*/font-size: 1.5rem;position: absolute;top:0;left: 0;bottom: 0;padding: .75rem;color: greenyellow;
}.content ul li .file-icon{position: absolute;background: url("../img/file.png") no-repeat center;background-size: 1.5rem 1.5rem;width: 1.5rem;height: 1.5rem;left: 3rem;top:.75rem;
}.content ul li .file-name{position: absolute;line-height: 3rem;left: 5rem;
}.t{display: none;
}
#upper{position: absolute;right: 15px;top: 5px;color: blue;
}#log{width: 200px;height: 30px;color: red;float: right;
}/*重新定义图标位置*/
.icon-plus:before{display: block;padding-top: 10px;/*这个会使字体不居中,直接指定fontSize就好*//*width: .3rem;*/font-size: 1.2rem;
}.icon-info:before{display: block;padding-top: 10px;/*这个会使字体不居中,直接指定fontSize就好*/font-size: 1.2rem;
}.icon-move:before{display: block;padding-top: 10px;/*这个会使字体不居中,直接指定fontSize就好*/font-size: 1.2rem;
}
.icon-docs:before{display: block;padding-top: 10px;/*这个会使字体不居中,直接指定fontSize就好*/font-size: 1.2rem;
}.icon-trash-empty: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{width: 16rem;padding: .3rem .4rem;font-size: 1rem;
}/*估计这个优先级没有 .down a{}的高,所以根本没执行a.btn{} >  .down a{} > .down a.btn{}
*/
/*.down a.btn{*//*background: lavender;*//*border: solid 1px grey;*//*border-radius: 5px;*//*padding: 5px;*/
/*}*/a#confirm {line-height:3rem;
}a#cancel{line-height: 3rem;
}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;
}

  

3.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 Constructorinitialize: 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 EventreceivedEvent: 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-trash-empty').bindtouch(function () {var down = $('#operator-down');down.data('action','delete');down.removeClass('down');});//创建文件夹$('.icon-plus').bindtouch(function () {$('#dialog-overlay').css('display', 'block');});//fileDiolog$('#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');});//confirm dialog//   确定$('#confirm').bindtouch(function () {var down = $('#operator-down');down.addClass('down');var action = down.data('action');console.log(action);if (action == 'delete'){$('.icon-ok-squared').each(function () {var entry = $(this).parent().data('entry');console.log(entry);function success() {console.log('文件删除成功!');var curEntry = $('#current-dir').data('curEntry');fileDealer.openEntry(curEntry);}function fail() {alert('删除失败');}if (entry.isFile) {entry.remove(success, fail);} else {entry.removeRecursively(success, fail)}});}});//  取消$('#cancel').bindtouch(function () {$('#operator-down').addClass('down');});
}function fileHander() {}/*--------------------创建文件夹-------------*/fileHander.prototype.createFile = function (entry, filename) {console.log(1);entry.getDirectory('./' + filename, {create: true}, function (dirEntry) {console.log('创建成功!');$('#dialog-overlay').css('display', 'none');var curEntry = $('#current-dir').data('curEntry');fileDealer.openEntry(curEntry);}, 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.find('#check').bindtouch(function () {changeCheckState.bind(this)();changeOperatorState();}, true);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 changeCheckState() {var me = $(this);if (me.hasClass('icon-check-empty')) {me.removeClass('icon-check-empty');me.addClass('icon-ok-squared');} else {me.addClass('icon-check-empty');me.removeClass('icon-ok-squared');}
}function changeOperatorState() {var checkedOpera = $('#operator-checked');var unChckOpera = $('#operator-nocheck');if ($('.icon-ok-squared').length > 0) {checkedOpera.show();unChckOpera.hide();} else {checkedOpera.hide();unChckOpera.show();}
}//将文件和文件夹分离
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, bubble) {attachMyEvent($(this), cb, bubble);
};function attachMyEvent(sr, cb, bubble) {//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');if (bubble) {event.stopPropagation();}});sr.on('touchend', function (event) {var me = $(this);if (me.data('touch') == true) {//改变回调函数的this指针为sr//触发回调函数cb.bind(this)();}me.removeClass('touchInside')me.data('touch', false);if (bubble) {event.stopPropagation();}});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')}}if (bubble) {event.stopPropagation();}// 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;
}

  

转载于:https://www.cnblogs.com/yqlog/p/5616804.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/424190.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

spring mvc学习(19):cookievalue注解(显示cookie的值,默认必须有值)

目录结构 web.xml <?xml version"1.0" encoding"UTF-8"?> <web-app xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance" xmlns"http://java.sun.com/xml/ns/javaee" xsi:schemaLocation"http://java.sun.com/xml…

续:C#串口操作

今天继续写C#的工业扫描串口。突然遇到一个很奇怪的问题&#xff1a;那就是我要求把某些码得到之后进行业务处理&#xff0c;但是就是这个时候突然发现扫描出来的 码位数不正确了&#xff01;我就很怀疑自己的代码逻辑了。于是&#xff0c;我就逐行进行调试&#xff0c;而接受口…

spring mvc学习(20):RequestHeader(获取请求头中某一部分值)

目录结构 web.xml <?xml version"1.0" encoding"UTF-8"?> <web-app xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance" xmlns"http://java.sun.com/xml/ns/javaee" xsi:schemaLocation"http://java.sun.com/xml…

698. Partition to K Equal Sum Subsets

文章目录1 理解题目2 分析2.1进一步优化2.2 根据花花酱解答1 理解题目 Given an array of integers nums and a positive integer k, find whether it’s possible to divide this array into k non-empty subsets whose sums are all equal. 输入&#xff1a;一个int数组nums…

spring mvc学习(21):testparam请求参数和请求头表达式

目录结构 web.xml <?xml version"1.0" encoding"UTF-8"?> <web-app xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance" xmlns"http://java.sun.com/xml/ns/javaee" xsi:schemaLocation"http://java.sun.com/xml…

OpenGL ES GLKit初探

#GLKit框架 GLKit框架的设计目的是为了简化OpenGL/OpenGL ES的应用开发。它的出现加快了OpenGL或OpenGL ES应用程序的开发。使用数学库、背景纹理加载&#xff0c;预先创建着色器效果&#xff0c;以及标准视图和视图控制器来实现渲染循环。 GLKit框架提供了功能和类&#xff0c…

一个封装了的ADO类,功能非常强大,并做了一个DEMO演示如何操作ACCESS数据库

呵呵&#xff0c;说实在的&#xff0c;这个类俺是从外国论坛上下载的&#xff0c;自己研究了下如何使用并做了一个DEMO&#xff0c;演示如何操作ACCESS数据库。希望给那些没有接触数据库编程的初学者一点启发吧。有任何问题请及时与我联系^_^。程序下载地址&#xff1a;/Files/…

93. Restore IP Addresses

文章目录1 题目理解2 回溯1 题目理解 输入&#xff1a;字符串s 输出&#xff1a;可能的ip地址 规则&#xff1a;一个有效的ip地市是一连串数字&#xff0c;数字范围在0到255&#xff0c;每个数字不能有前导0。例如"0.1.2.201" and "192.168.1.1"是有效ip地…

spring mvc学习(22):/textpath/*/helen

目录结构 web.xml <?xml version"1.0" encoding"UTF-8"?> <web-app xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance" xmlns"http://java.sun.com/xml/ns/javaee" xsi:schemaLocation"http://java.sun.com/xml…

131. Palindrome Partitioning

文章目录1 题目理解2 回溯3 动态规划1 题目理解 输入&#xff1a;字符串s 规则&#xff1a;将字符串s分割&#xff0c;分割后每一个部分都是一个回文串。 输出&#xff1a;所有的分割方式 Example 1: Input: s “aab” Output: [[“a”,“a”,“b”],[“aa”,“b”]] Examp…

4 文件操作 支持图片 视频 mp3 文本等

#文件操作:send_file,支持图片 视频 mp3 文本等app.route("/img")def img(): return send_file("1.jpg")转载于:https://www.cnblogs.com/ajaxa/p/11156483.html

我的博客开张了!!!

留个脚印,嘻嘻! 转载于:https://www.cnblogs.com/stu-acer/archive/2006/04/26/385453.html

第一百零五期:5年前,跳槽涨薪,你笑了,5年后,跳槽降薪,你慌了!

去年&#xff0c;我在年度绩效面谈中与某中年技术男就 “从测试转向产品经理” 的这个话题上进行了一些探讨与分析。 作者&#xff1a;王晔倞 图片来自 Pexels 或许是因为分析的角度比较客观、真实&#xff0c;再加上俩人都比较会演戏&#xff0c;我激情&#xff0c;他投入&a…

241. Different Ways to Add Parentheses

文章目录1 题目理解2 分治法1 题目理解 输入&#xff1a;字符串input&#xff0c;包含数字和操作符 规则&#xff1a;给input的不同位置加括号&#xff0c;使得input可以得到不同的计算结果。 输出&#xff1a;返回可能的计算结果 Example 1: Input: “2-1-1” Output: [0, 2…

第一百零六期:长相不讨AI喜欢面试就会挂?全球百万求职者经历AI“看脸”面试

AI不仅会筛选你的简历&#xff0c;还会通过看脸决定你能否通过面试。这不是将来时。全球已有超过一百万求职者&#xff0c;经历过AI面试官的冷酷“凝视”。 作者&#xff1a;鱼羊 本文经AI新媒体量子位&#xff08;公众号ID:QbitAI&#xff09;授权转载&#xff0c;转载请联系…

最近比较忙

最近项目真是忙的可以不过还好前几天没事搞了个电影小偷,闲下来看看电影真是不错站在这里要的回下就可以了http://www.ve99.com 转载于:https://www.cnblogs.com/flashicp/archive/2006/04/29/388972.html

服务器控件HtmlTable下控件赋值问题

在程序开发过程中&#xff0c;碰到这样的问题&#xff1a; 1<table>2<tr>3<td><asp:DropDownList iddropdownlist1 runatserver></td>4</tr>5</table>在基类页中有如下代码&#xff1a;1foreach(Control pagectl inPage.Controls[1]…

Foundry feats. MultiverseStudio

https://www.foundry.com/news-awards/foundry-jcube-announcement 经过这么多年的过程&#xff0c;本周本产品终于发布了PR&#xff0c;这次是由Foundry独家代理销售。 目前本产品已经在全球第一线的工作室的流程内使用&#xff0c;用来装配无法想象巨大的场景&#xff0c;如果…

842. Split Array into Fibonacci Sequence

文章目录1 题目理解2 回溯1 题目理解 输入&#xff1a;一个数字字符串S。例如S“123456579”。 规则&#xff1a;我们可以把这个字符串分割为菲波那切数列&#xff0c;例如&#xff1a;[123, 456, 579]。 一个菲波那切数列需要符合以下条件&#xff1a; 1 0<F[i]<231−1…

第一百零七期:她说,嫁人就选程序员!

又是一年双十一&#xff0c;单身狗们还好吗?想脱单?找个程序猿/程序媛是不错的选择&#xff0c;要不要了解一下? 作者&#xff1a;李二狗 图片来自 Pexels 程序员&#xff0c;已经渐渐成当代相亲市场的一只主力军。甚至可以说是“香饽饽”。 越来越多的妹子&#xff0c;在…