bizhong / frontend

📝 书山有路勤为径,学海无涯苦作舟。
MIT License
0 stars 0 forks source link

2018 年 2 月 #7

Open bizhong opened 6 years ago

bizhong commented 6 years ago

.editorconfig

EditorConfig 帮助开发人员在不同的编辑器和 IDE 之间定义和维护一致的编码风格。

例如:

# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Matches every file
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
bizhong commented 6 years ago

加载图片

图片懒加载:一般会显示一张默认图,需要显示时再去请求加载实际图片。

// jQuery
$('ul li img').off('load').one('load', function() {
  var self = $(this);
  var target = $(this).parent('li');

  var img = new Image();
  img.src = $(this).attr('dada-src');
  img.onload = function(e) {
    $(this).css({
      'width': $(this).width(),
      'height': $(this).height()
    });
  };
  target.html(img);
  img.onerror = function(e) {
      target.find('img').attr('src', 'http://lanbizhong.com/static/img/img-error.png');
  };
});