Open bizhong opened 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');
};
});
.editorconfig
EditorConfig 帮助开发人员在不同的编辑器和 IDE 之间定义和维护一致的编码风格。
例如: