码迷,mamicode.com
首页 > Web开发 > 详细

JS Image 加载

时间:2014-07-13 08:00:35      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   width   cti   io   

var imgLoad = function (url, callback) {
    var img = new Image();
    img.src = url;
    if (img.complete) {
        callback(img.width, img.height);
    } else {
        img.onload = function () {
            callback(img.width, img.height);
            img.onload = null;
        };
    };
};

 

JS Image 加载,布布扣,bubuko.com

JS Image 加载

标签:style   blog   color   width   cti   io   

原文地址:http://www.cnblogs.com/allvie/p/3838022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!