В следующем коде первое и второе изображения с якорями имеют ссылки, и на этих изображениях текст заголовка не скрывается (непрозрачность 0) при загрузке страницы в IE 6 / IE7 или IE8 в режиме Comp.Все другие изображения работают нормально, но мне нужно, но ссылки в них.
Вот код в JSfiddle
FF работает отлично, и IE8 в обычном режиме также хорошо
Я бы выложил здесь весь код, но он довольно длинный, и у меня были проблемы с этим.
ДОБАВЛЕН JS код
$(window).load(function(){
//for each description div...
$('div.description').each(function(){
//...set the opacity to 0...
$(this).css('opacity', 0);
//..set width same as the image...
$(this).css('width', $(this).siblings('img').width());
//...get the parent (the wrapper) and set it's width same as the image width... '
$(this).parent().css('width', $(this).siblings('img').width());
//...set the display to block
$(this).css('display', 'inline-block');
});
$('div.wrapper').hover(function(){
//when mouse hover over the wrapper div
//get it's children elements with class descriptio
//and show it using fadeTo
//$(this).children('.description').show();
$(this).children('.description').stop().fadeTo(500, 0.7);
},function(){
//when mouse out of the wrapper div
//use fadeTo to hide the div
$(this).children('.description').stop().fadeTo(500, 0);
});
});
Кажется, это не так ...
$(this).css('opacity', 0);