獲取圖片加載後的寬高

<script type="text/javascript">
            let list= [];
            let url = ['http://127.0.0.1:9999/images/01.jpg','http://127.0.0.1:9999/images/02.jpg']
            url.forEach((item,index)=>{
                imgInfo(item,function(e){
                    list.push({src: item,w: e.w,h: e.h})
                    console.log(list) // 渲染圖片
                })
            })
            
//            for(let i=0,item;item = url[i++];){
//                (function(i){
//                    imgInfo(item,function(e){
//                        console.log(e)
//                        list.push({src: item,w: e.w,h: e.h})
//                        console.log(list) // 渲染圖片
//                    })
//                })(i)
//            }
            function imgInfo(src,callback){ 
                let Img = new Image()
                Img.src = src;
                if(Img.complete) { // 圖片已經存在於瀏覽器緩存
                    callback({w: Img.width,h:Img.height})
                 }else{
                     Img.onload = function (e){
                         callback({w: Img.width,h:Img.height})
                   }
                }
                
            }
        </script>javascript

    // 僅作demo,未考慮兼容性java

相關文章
相關標籤/搜索