2014年3月27日 星期四

[jQuery]解決IE7、IE8透明背景的圖片有黑邊的問題

避免之後忘記又找半天,故紀錄。

$(function() {
    if(navigator.userAgent.indexOf("MSIE") != -1) {
        $('img').each(function() {
            if($(this).attr('src').indexOf('.png') != -1) {
                $(this).css({
                    'filter': 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' +
                    $(this).attr('src') +
                    '", sizingMethod="scale");'
                });
            }
        });
    }
});

資料來源:
IE7、IE8中使用jQuery的fadeIn/fadeOut 黑邊問題

沒有留言:

張貼留言