commonFunction.js 490 Bytes
//使用IE滤镜的方式显示图片(优化频繁显示很多图片时的内存占用)
function showPicByFilter(containerId, picPath) {
    var containerObj = document.getElementById(containerId);
    if (containerObj) {
        containerObj.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='scale',src='" +
					picPath + "')";
        //保存图片地址,以备后用
        containerObj.setAttribute("data-pic", picPath);
    }
}