摘要: <!DOCTYPE html> <html> 改为 <!DOCTYPE> <html> OK了 <!DOCTYPE html> <html> 改为 <!DOCTYPE> <html> OK了 <!DOCTYPE> <html> OK了 <!DOCTYPE> <html> OK了 阅读全文
posted @ 2018-11-22 09:32 彭成刚 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 使用 LESS 简化层叠样式表(CSS)的编写 https://less.bootcss.com/ Sass完全兼容所有版本的CSS https://gojs.net/latest/samples/flowchart.html https://www.cnblogs.com/landeanfen/ 阅读全文
posted @ 2018-11-21 11:09 彭成刚 阅读(164) 评论(0) 推荐(0) 编辑
摘要: element-ui iview-admin 都是基于vue的ui框架 阅读全文
posted @ 2018-11-21 11:00 彭成刚 阅读(739) 评论(0) 推荐(0) 编辑
摘要: Mock.js Mock.js 生成随机数据,拦截 Ajax请求 开始 前后端分离 让前端攻城师独立于后端进行开发。 增加单元测试的真实性 通过随机数据,模拟各种场景。 阅读全文
posted @ 2018-11-21 09:43 彭成刚 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 今天被 <!doctype html> 搞了两个小时,两个页面同样的样式,chosen右边的小箭头,一个上下居中对齐 一个居顶对齐。最后找到问题所在doctype <-- 这个小箭头 阅读全文
posted @ 2018-11-20 16:02 彭成刚 阅读(127) 评论(0) 推荐(0) 编辑
摘要: <link rel="apple-touch-icon-precomposed" sizes="114x114" href="jiajian.png"> 阅读全文
posted @ 2018-11-19 13:47 彭成刚 阅读(280) 评论(0) 推荐(0) 编辑
摘要: chrome 查看样式的时候默认没有 focus的样式,可以把选择器开开select 修改选中时候的默认默认样式 outline:none 把系统的线关了 然后自己再border一下input:focus { outline: none; border-color: #cfdc00; } 阅读全文
posted @ 2018-11-16 11:08 彭成刚 阅读(212) 评论(0) 推荐(0) 编辑
摘要: .chosen-container-active .chosen-single { border: 1px solid #5897fb; -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); box-shadow: 0 0 5px rgba(0, 0, 0, 阅读全文
posted @ 2018-11-16 09:00 彭成刚 阅读(100) 评论(0) 推荐(0) 编辑
摘要: ECMAScript 6入门(###,com) http://www.hubwiz.###/course/5594e91ac086935f4a6fb8ef/ ECMAScript 6 入门 作者:阮一峰 http://es6.ruanyifeng.com/ 阅读全文
posted @ 2018-11-13 21:54 彭成刚 阅读(97) 评论(0) 推荐(0) 编辑
摘要: function a() {console.info("a");} function b() {console.info("b");} var c = a; a = function(){c();b();} a(); //输入 a b function a() {console.info("a"); 阅读全文
posted @ 2018-11-08 13:58 彭成刚 阅读(84) 评论(0) 推荐(0) 编辑
摘要: //①不定义接受参数的方式来接受参数(arguments) function getparams(){ //利用arguments来接受参数,arguments表示参数集合, //里面存放的调用这个方法所传递过来的所有参数的集合 var _q=arguments[0];//0位置表示q参数 var  阅读全文
posted @ 2018-10-30 15:56 彭成刚 阅读(398) 评论(0) 推荐(0) 编辑
摘要: <div style="width:100px; background-color: aqua; min-width:100%">kkk</div> 阅读全文
posted @ 2018-10-25 17:53 彭成刚 阅读(902) 评论(0) 推荐(0) 编辑
摘要: 背景渐变 background-image:linear-gradient(0deg,#fff,#ccc); 阅读全文
posted @ 2018-10-23 19:13 彭成刚 阅读(509) 评论(0) 推荐(0) 编辑
摘要: width:auto; border-bottom:1px solid #ccc; height:30px; display: inline-block;white-space: nowrap; 阅读全文
posted @ 2018-10-22 18:59 彭成刚 阅读(404) 评论(0) 推荐(0) 编辑
摘要: https://www.runoob.com/w3cnote/flex-grammar.html display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; 两列Div居中 显示 用传统float方式就 阅读全文
posted @ 2018-10-22 09:23 彭成刚 阅读(1041) 评论(0) 推荐(0) 编辑
摘要: https://code.visualstudio.com/ 阅读全文
posted @ 2018-10-20 22:20 彭成刚 阅读(130) 评论(0) 推荐(0) 编辑
摘要: @import "http://apps.bdimg.com/libs/bootstrap/3.3.4/css/bootstrap.css" /*-防止各大cdn公共库加载地址失效问题,此地址我们会时时监控,及调整以保障正常访问,如果您不喜欢请改为自己的地址-www.jq22.com为您服务*/ / 阅读全文
posted @ 2018-10-19 15:40 彭成刚 阅读(2061) 评论(0) 推荐(0) 编辑
摘要: 1 延时事件 window.setTimeout('dofunction()',2000); 函数外面要有引号 如果没有引号 就不能延时执行 应该是内容进行eval,所以外层不是传递字符串的话,外层函数就直接执行了 2.layui form 表单提交 事件 如果不写事件,他有 <input type 阅读全文
posted @ 2018-10-19 11:43 彭成刚 阅读(283) 评论(0) 推荐(0) 编辑
摘要: win10 闹钟和时钟 用个倒计时 Inno Setup 编译器 把应用程序打包成安装程序 nwjs-v0.14.7-win-ia32 XP专用 chrome用的49的版本 作用是把浏览器地址的程序打包成exe 研究页面最后插入函数执行 研究结果是 页面js 分 同步 和 异步 异步最后肯定在同步之 阅读全文
posted @ 2018-10-17 20:02 彭成刚 阅读(236) 评论(0) 推荐(0) 编辑
摘要: // // var showColumns = getShowColsRows("table");// var showArray = [];// $.each(showColumns, function (index, data) {// showArray.push(data);// });// 阅读全文
posted @ 2018-10-17 15:15 彭成刚 阅读(225) 评论(0) 推荐(0) 编辑
摘要: height: calc(100vh - 100px); 阅读全文
posted @ 2018-10-16 19:45 彭成刚 阅读(2659) 评论(0) 推荐(0) 编辑
摘要: border-top: 1px solid #ccc !important; 阅读全文
posted @ 2018-10-16 15:34 彭成刚 阅读(244) 评论(0) 推荐(0) 编辑
摘要: var jsonObj = {"a":true}; window.localStorage.setItem("kkk",JSON.stringify(jsonObj)); 取json的代码 var getkkk = JSON.parse(window.localStorage.getItem("kk 阅读全文
posted @ 2018-10-15 17:37 彭成刚 阅读(385) 评论(0) 推荐(0) 编辑
摘要: layui.use(['layer', 'form'], function(){ var layer = layui.layer ,form = layui.form; var $ = layui.jquery; function classEvent(cl... 阅读全文
posted @ 2018-10-15 12:56 彭成刚 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 谷歌浏览器 debugger; 阅读全文
posted @ 2018-10-08 16:02 彭成刚 阅读(113) 评论(0) 推荐(0) 编辑
摘要: C# 获取U盘ID序列号及U盘信息 2011-05-20 上传大小:35KB c#VS2005U盘IDU盘信息 C# 获取U盘ID序列号及U盘信息 2011-05-20 上传大小:35KB c#VS2005U盘IDU盘信息 C# 获取U盘ID序列号及U盘信息 2011-05-20 上传大小:35KB 阅读全文
posted @ 2018-06-22 14:18 彭成刚 阅读(1631) 评论(0) 推荐(1) 编辑
摘要: private void button3_Click(object sender, EventArgs e) { this.label1.Text = "123kkk"; //System.Threading.Thread.Sleep(0); Message... 阅读全文
posted @ 2016-08-03 10:52 彭成刚 阅读(536) 评论(0) 推荐(0) 编辑
摘要: C:\Users\Administrator\AppData\Roaming\360se6\apps\data\users\default\data\ico 阅读全文
posted @ 2016-05-07 23:14 彭成刚 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 先看一下演示地址:http://720yun.com/t/8e426js8jbs 我制作的全景图 步骤分为三步: 一:拍摄照片,正规应该用鱼眼相机进行拍摄,但是手头就一个手机,所以我就用手机凑合拍了,拍了81张。应该用M当进行拍摄,但是当时比较懒,就用默认相机拍摄了,只是为了试手,所以没太正规。还有 阅读全文
posted @ 2016-04-26 15:02 彭成刚 阅读(1093) 评论(1) 推荐(0) 编辑
摘要: 他的颜色代码配置文件,不在安装目录下,这让我好找啊~ C:\Users\Administrator\AppData\Roaming\Adobe\Dreamweaver CC 2014\zh_CN\Configuration\CodeColoring Colors.xml 阅读全文
posted @ 2016-03-01 11:31 彭成刚 阅读(486) 评论(0) 推荐(0) 编辑
摘要: 无标题文档 阅读全文
posted @ 2015-08-27 19:55 彭成刚 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 第二届京津冀协同发展论坛参考的页面:http://app.cntcma.com/wx/35f4a8d465e6e1edc05f3d8ab658c551.html还看见一个鸡贼的东西 width: 100%; max-width: 600px;这个更省事,都不用单独写viewport了css动画... 阅读全文
posted @ 2014-11-30 11:13 彭成刚 阅读(797) 评论(0) 推荐(0) 编辑
摘要: AE里面速度的曲线调节最终的小效果两个关键点:一:速度曲线调节编辑速度图标,他的曲线是编辑速度的。二:节点不要用贝塞尔曲线编辑值图标,就是圆圈的x值y值的曲线。控制位置移动的。选择一个节点右键,关键帧插值---------------------------------------------开始学... 阅读全文
posted @ 2014-09-25 11:26 彭成刚 阅读(10863) 评论(0) 推荐(0) 编辑
摘要: (服务器不支持!放弃吧!骚年!)主要作用是为了分离数据库,灵感是这样的:收到json影响,把asp里的数据,用一个页面输出,然后用另外一个页面读取,这样就不用有数据库位置的烦恼了代码 网上有很多,我贴上,作为记录 阅读全文
posted @ 2014-04-16 11:55 彭成刚 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 别的浏览器正常可以jquery.load本机文件,但是360浏览器不行了,缺德啊!!jsonP代码index3.html新浪微博登陆获取 k1.htmljsonp_callback({"k":"err!!"}); 补充一个serverReferer.php 阅读全文
posted @ 2014-03-05 15:13 彭成刚 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 'id 这里其实是 classId 'mbStr1 最右边的栏目模板 由于是当前本页面 就不带链接了 建议默认值:$title 'mbStr2 递归模板 带链接 建议默认值:$title >> Public function mianbaoxue(id,mbStr1,mbStr2) set rs_getSelect = db.getRs(rs_getSelect,"select * from "&tName&" where oDel = False and id = "&id) if not r 阅读全文
posted @ 2013-09-13 09:56 彭成刚 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 不是啥创新,就是遇到这个问题又从新梳理了一下。解决方案很简单 css里面加入个 a:hover {border:0;} 即可解决付上参考教程和我写的代码http://www.blueidea.com/tech/web/2009/6796.aspPS:顺道说下ie6环境实在是太鸡贼了。反正win7下 用ietester还行,还有一个是IECollection也不错。xp下也都支持,不过支持度各有不同,建议就都装了好了。<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://w 阅读全文
posted @ 2013-02-02 23:26 彭成刚 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 先说一句:我写的代码没用到网上的db类库,那个类库很强大,但是我实在是没时间学了,我就写我用的上的几个小函数够用就好。此代码留作个人记录。所有代码经过 新浪SAE平台调试通过数据库 表名 test 里面有两个字段 id myName 这里小提一句,所有的sql语句,就直接上phpMyAdmin里面操作,然后就会出现sql语句代码,直接粘过来,就基本都能用了。下面附上 dbclass.php<?phpclass dbclass{ public $link; //初始化数据连接 public function init() { $link = mysq... 阅读全文
posted @ 2013-02-02 01:58 彭成刚 阅读(416) 评论(0) 推荐(0) 编辑
摘要: onsubmit="return validate_form('asp_frm1');" 阅读全文
posted @ 2012-10-03 15:35 彭成刚 阅读(157) 评论(0) 推荐(0) 编辑