Si utilizas el lightbox ‘lytebox‘ pero las transiciones te funcionan muy lentamente, tal vez lo mejor sea deshabilitarlas aunque sea solo para IE.
Para ello, abrimos el archivo «lytebox.js» y en línea 37 tenemos que poner:
this.doAnimations = (document.all && !window.opera) ? !checkVersion() : true;
y unas líneas más arriba entre «String.prototype…» y «function LyteBox() {«, añadimos esta función:
function checkVersion() {
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {
var ieversion = new Number(RegExp.$1)
if (ieversion > 8 )
return false;
else if (ieversion <= 8 )
return true;
}
return false;
}