/ Published in: jQuery
Expand |
Embed | Plain Text
//recorre las imágenes redimensionadas solo en IE y les aplica el filtro necesario para suavizarlas if ($.browser.ie) { $('img').each(function() { ancho_forzado = $(this).width(); img = new Image(); img.src = $(this).attr('src'); ancho_real = img.width; if (ancho_forzado != ancho_real) { if ($.browser.version.substr(0,1) == '7') { this.style.msInterpolationMode = "bicubic"; } else if ($.browser.version.substr(0,1) == '6') { $(this).attr('width', ancho_forzado); this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + img.src + "', sizingMethod='scale')", this.runtimeStyle.paddingTop = this.height, this.runtimeStyle.height = 0; } } }); }
You need to login to post a comment.
