随笔 01

jQuery 插件形式

$.fn.extend({
    dropdown: function() {
        // 返回this,保持链式调用
        return this.each(function() {
            dropdown(this)
        });
    }
})

// 调用
$().dropdown()

图片编码

  • 直接将图片进行BASE64格式二进制编码 ,直接使用,而无需额外请求图片
  • 地址:tool.css-js.com/base64.html
  • 优点:减少http请求
  • 缺点:
    • IE6和IE7不兼容,
    • 编码后比原图大,
    • 手动修改更麻烦,
    • 不能缓存

字体图标库

猜你喜欢

转载自blog.csdn.net/wildye/article/details/80328138