这个想法是在下载真正的高分辨率图像之前显示图像的低分辨率版本,理想情况下使用img标记.
<img lowres="http://localhost/low-res-image.jpg" ng-src="http://localhost/low-res-image.jpg">
低分辨率图像将首先可见,并在下载后用高分辨率图像替换.如何才能做到这一点?是否可以编辑img.src属性,或者是否应该创建其他东西(例如带背景的包装div或其他临时div)?
你可能想要创建一个指令,我实际上已经雇佣了它作为属性,因此默认情况下它以lores开头.
原文链接:https://www.f2er.com/angularjs/142043.htmlJS:
app.directive('hires',function() { return { restrict: 'A',scope: { hires: '@' },link: function(scope,element,attrs) { element.one('load',function() { element.attr('src',scope.hires); }); } }; });
HTML:
<img hires="http://localhost/hi-res-image.jpg" src="http://localhost/low-res-image.jpg" />