ホバー時に単純な jquery 画像ズーム効果を使用しています。Chrome では問題なく動作しますが、Firefox と IE では効果が表示されません。フェードインは 3 つすべてで正常に機能します。私は次のコードを使用しています:
<script type="text/javascript" src="js/jquery-2.0.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#matter1').css("display", "none");
$('#matter1').fadeIn(3000);
$('img.img_zoom').hover(function () {
$(this).animate({
'zoom': 1.2
}, 100);
}, function () {
$(this).animate({
'zoom': 1
}, 100);
});
$('a.nav_font').hover(function () {
$(this).animate({
'zoom': 1.1
}, 75);
}, function () {
$(this).animate({
'zoom': 1
}, 75);
});
});
</script>
前もって感謝します。