摘要: #文件及文件夹创建删除 mkdir 文件名称 (创建文件夹) touch 文件名称 (创建文件) rm -r 文件名称 (递归删除) rm -rf 文件名称 (删除文件夹内的所有 无提示) rmdir 文件名称 (删除文件夹) #查看.搜索.历史 ls -a 查看所有 (包括隐藏目录) ls -l 阅读全文
posted @ 2017-05-24 16:03 lxn* 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 下载获取:www.thinkphp.cn 配置 1.创建网站根目录 2.放置thinkPHP框架目录 3.浏览器下访问单入口文件 目录简介 Application ├─Common 应用公共模块 │ ├─Common 应用公共函数目录 │ └─Conf 应用公共配置文件目录 ├─Home 默认生成的 阅读全文
posted @ 2017-05-24 15:01 lxn* 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 《 fadeIn轮播 》 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>轮播</title> <style type="text/css"> *{margin:0px;padding: 0px;list-s 阅读全文
posted @ 2017-05-24 14:55 lxn* 阅读(137) 评论(0) 推荐(0) 编辑
摘要: /**接收地址栏参数***/function GetQuery(key){var search = location.search.slice(1);//得到get方式提交的查询字符串var arr = search.split("&");for(var i = 0;i < arr.length;  阅读全文
posted @ 2017-05-24 14:53 lxn* 阅读(112) 评论(0) 推荐(0) 编辑
摘要: rz 上传文件 sz下载文件 date 显示日期 cal 显示日历 shutdown -h now立刻关机 now相当于时间为0 init 0关机 shutdown -h +10十分钟之后关机 shutdown -r now重启 chmod 改变权限 u=rwx,g=rwx,o=rwx +文件名或目 阅读全文
posted @ 2017-05-24 14:53 lxn* 阅读(98) 评论(0) 推荐(0) 编辑
摘要: window.onresize=function(){ var w=$(window).width(); if((w<1189)){ $('.one').hide(); } } var scrollFunc = function(e) { var direct = 0; e = e || windo 阅读全文
posted @ 2017-05-24 14:51 lxn* 阅读(291) 评论(0) 推荐(0) 编辑
摘要: function isWeixinBrowser(){ var ua = navigator.userAgent.toLowerCase(); navigator.userAgent判断浏览器类型 return (/micromessenger/.test(ua)) ? true : false ; 阅读全文
posted @ 2017-05-24 14:48 lxn* 阅读(228) 评论(0) 推荐(0) 编辑
摘要: var system ={ win : false, mac : false, xll : false }; var p = navigator.platform; system.win = p.indexOf("Win") == 0; system.mac = p.indexOf("Mac") = 阅读全文
posted @ 2017-05-24 14:47 lxn* 阅读(216) 评论(0) 推荐(0) 编辑
摘要: opacity:0.2;图像的透明度 设置文本域无法拉伸textarea{resize:none;} display:none;隐藏当前元素不保留位置 visibility:hidden 隐藏当前元素 但是保留位置 filter:alpha(opacity=20) margin:0 auto;按钮居 阅读全文
posted @ 2017-05-24 14:43 lxn* 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 整个项目搭建流程 index开始页面 引入requireJS文件 和main.Js主要文件 <--index.html--> <div ui-view ></div><script src="assets/requirejs/require.js"></script> <script src="ma 阅读全文
posted @ 2017-05-24 14:25 lxn* 阅读(221) 评论(1) 推荐(0) 编辑