02 2017 档案

摘要:当你需要根据服务器返回的数据来动态改变页面的时候,应用程序接口(API)就派上用场了。 记住,API——应用程序接口(Application Programming Interface)是计算机之间相互交流沟通的工具。 许多网站的应用程序接口(API)都是通过一种称为JSON格式的数据来传输的,JS 阅读全文
posted @ 2017-02-28 16:12 JaceyKan 阅读(309) 评论(0) 推荐(0) 编辑
摘要:注释 1. // This is an in-line comment. 2. /* This is a multi-line comment */ 七种data types(数据类型) undefined(未定义), null(空), boolean(布尔型), string(字符串), symb 阅读全文
posted @ 2017-02-27 18:52 JaceyKan 阅读(5662) 评论(0) 推荐(0) 编辑
摘要:转载自:https://developer.mozilla.org/zh-CN/docs/Web/Guide/CSS/Using_CSS_gradients CSS 渐变 是在 CSS3 Image Module 中新增加的 <image> 类型. 使用 CSS 渐变可以在两种颜色间制造出平滑的渐变 阅读全文
posted @ 2017-02-24 22:01 JaceyKan 阅读(227) 评论(0) 推荐(0) 编辑
摘要:转载自:http://zengrong.net/post/1746.htm 删除远程分支和tag 在Git v1.7.0 之后,可以使用这种语法删除远程分支: $ git push origin --delete <branchName> 删除tag这么用: git push origin --de 阅读全文
posted @ 2017-02-24 20:47 JaceyKan 阅读(579) 评论(0) 推荐(0) 编辑
摘要:问题描述 我们每次使用命令 git clone git@gitlab.xxx.com:xxxxx.git 默认 clone 的是这个仓库的 master 分支。如果最新的代码不在 master 分支上,该如何拿到呢?如下图所示,最新的代码可能在daily/1.4.1分支上,我们希望拿到这个分支上的代 阅读全文
posted @ 2017-02-24 19:15 JaceyKan 阅读(17814) 评论(0) 推荐(1) 编辑
摘要:https://coding.net/ 写了些小程序后放在github上托管,并用gitpages展示。 今天发现用git pages展示的网页网络特别不稳定,时常会出现网页打不开的现象。 之前一直通过FQ访问国外网站,竟没发现这个问题。问了大新子,大新子说git hub容易抽风,我也是醉了。 于是 阅读全文
posted @ 2017-02-24 18:17 JaceyKan 阅读(354) 评论(0) 推荐(0) 编辑
摘要:使用野狗云做的弹幕小程序: 演示:http://jacey.coding.me/barrage/ 或 https://jaceykan.github.io/practice/barrage.html 代码:https://github.com/JaceyKan/practice 野狗云学习笔记 野狗 阅读全文
posted @ 2017-02-24 17:58 JaceyKan 阅读(3344) 评论(3) 推荐(2) 编辑
摘要:1. Centos 安装、卸载 git yum install git yum remove git 2. 安装完成最后一步设置: $ git config --global user.name "Your Name" $ git config --global user.email email@e 阅读全文
posted @ 2017-02-22 23:42 JaceyKan 阅读(248) 评论(0) 推荐(0) 编辑
摘要:http://www.jianshu.com/p/85266fa16639 http://idea.lanyus.com/ webstorm 入门指南 破解方法 1. 下载的WebStorm https://www.jetbrains.com/webstorm/ 2. 打开网页 http://ide 阅读全文
posted @ 2017-02-22 22:18 JaceyKan 阅读(1073) 评论(0) 推荐(0) 编辑
摘要:学习网址:http://www.w3school.com.cn/jquery/index.asp http://jquery.com/ jQuery 极大地简化了 JavaScript 编程。 jQuery 是一个“写的更少,但做的更多”的轻量级 JavaScript 库。 jQuery 库 - 特 阅读全文
posted @ 2017-02-17 17:46 JaceyKan 阅读(189) 评论(0) 推荐(0) 编辑
摘要:转载自:http://majing.io/questions/432 问题描述 jQuery升级到3.0.0后类型错误 jquery.js:9612 Uncaught TypeError: url.indexOf is not a function 转载自:http://majing.io/ques 阅读全文
posted @ 2017-02-17 16:33 JaceyKan 阅读(7998) 评论(0) 推荐(0) 编辑
摘要:animate.css – 齐全的CSS3动画库 学习网站: https://daneden.github.io/animate.css/ http://www.dowebok.com/98.html animate.css 是一个来自国外的 CSS3 动画库,它预设了抖动(shake)、闪烁(fl 阅读全文
posted @ 2017-02-15 20:15 JaceyKan 阅读(346) 评论(0) 推荐(0) 编辑
摘要:引入jQuery库: jQuery 库是一个 JavaScript 文件,您可以使用 HTML 的 <script> 标签引用它: 通过 CDN(内容分发网络) 引用它 提示:使用谷歌或微软的 jQuery,有一个很大的优势: 许多用户在访问其他站点时,已经从谷歌或微软加载过 jQuery。所有结果 阅读全文
posted @ 2017-02-15 09:47 JaceyKan 阅读(1118) 评论(0) 推荐(0) 编辑
摘要:http://www.jianshu.com/p/4e3c8b06cb06 为什么要共享文件夹? 在工作的过程当中会使用到不同的软件开发环境,php的,python的,nodejs的为了隔离这些应用环境,我通常将这些编译环境安装到virtualbox当中,然后和主机共享文件目录,这样我就可以在主机环 阅读全文
posted @ 2017-02-09 16:18 JaceyKan 阅读(1624) 评论(0) 推荐(0) 编辑
摘要:学习网站:http://bootstrap.ninghao.net/index.html https://www.freecodecamp.cn http://www.runoob.com/bootstrap/bootstrap-tutorial.html Bootstrap 为快速简单的实施 We 阅读全文
posted @ 2017-02-03 10:32 JaceyKan 阅读(838) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示