自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (1)
  • 收藏
  • 关注

原创 JavaScript 类库起手式 ——万元归一

/** * selector 选择器 * content 上下文 * index 元素位置 */ function $(selector, context, index) { return new $.prototype.init(selector, context, index); }...

2018-06-11 09:41:54 293

原创 JavaScript 类库第四式 —— 四面楚歌

(function (window, o, factory) { //TODO 第一式&&第二式 window[o] = $; factory($); })(this, '$', function ($) { //TODO 第三式 });

2018-06-11 10:00:36 234

原创 JavaScript类库第三式 —— 聚气成刃

$.extend({ eq: function (i) { return $(this[i], this.selector, i) }, filter: function (e) { return $(e, this[0], 0) } })//console.log($(...

2018-06-11 09:54:34 248

原创 JavaScript类库第二式 —— 气沉丹田

$.extend = function (source) { for (var key in source) { if (source.hasOwnProperty(key)) { $.fn[key] = source[key]; } } };

2018-06-11 09:49:54 232

js 下载工具

This library is a tiny JavaScript + Flash library that allows you to generate files on the fly, in the browser, without server interaction. Web applications that allow you to generate vCards, color palettes, custom code, etc would benefit from using this library. In addition to increasing speed (no round trip to the server) this solution can reduce the database and server load of existing web applications. This is not a library to ‘force download’ a file from a server. It does not interact with a server at all.

2019-04-09

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除