我目前的网站上有一些简单的 JQuery 动画,但它在 Safari 中不起作用,我不知道我哪里出错了:
http://www.mousehouse.org.uk/index.php
// Header Animations
$('nav ul li #Global_Logo').animate({'background-position-y': '0px'}, 150)
.hover(function(){
$(this).stop().animate({'background-position-y': '-107px'}, 150);
}, function(){
$(this).stop().animate({'background-position-y': '0px'}, 150);
});
和这个:
// Work Links Animations
$('#Global_Work li a').stop().animate({backgroundPositionY: "0px", backgroundPositionX: "0px"}, 0)
.hover(function(){
$(this).stop().animate({backgroundPositionY: "-300px", backgroundPositionX: "0px"}, 150);
}, function(){
$(this).stop().animate({backgroundPositionY: "0px", backgroundPositionX: "0px"}, 150);
});