标签: css image loading
加载
加载后
我希望在100%加载后显示图像。任何css ??
答案 0 :(得分:1)
的CSS:
img{display:none;}
和js:
$('img').load(function () { $(this).show(); });