【发布时间】:2012-10-07 10:57:13
【问题描述】:
我有一些脚本:
$(window).load(function(){
$("#kontakt_kontakt").hover(
function(){
$("#kontakt").animate({left: '',bottom: '+=60'}, 440);
},
function(){
$("#kontakt").animate({left: '',bottom: '-=60'}, 440);
});
});
在悬停时,它会使 img 向上移动几个 px。在 chrome 中完美地工作,但在 IE 中并没有真正工作 - 什么也没发生。任何人都知道如何解决它? 你可以在这里查看:http://kafior.mydevil.net/index.html
【问题讨论】:
标签: jquery internet-explorer jquery-animate