我一起扔了一個帶有jQuery的動畫導航欄,它看起來像很多js我試圖完成,任何人都知道這個效果更優雅的解決方案?jQuery可能臃腫的代碼
直播網站:
http://daveywhitney.com/nav/2/
jQuery的
$(document).ready(function() {
$("#topnav li").prepend("<span></span>");
$("#topnav li").each(function() {
var linkText = $(this).find("a").html();
$(this).find("span").show().html(linkText);
});
$("#topnav li").hover(function() {
$(this).find("span").stop().animate({
marginTop: "-45"
}, 250);
} , function() {
$(this).find("span").stop().animate({
marginTop: "0"
}, 250);
});
});
謝謝我一定會檢查一下,儘管我擔心瀏覽器的兼容性。或者我...... – Davey
它在IE6 +中得到了支持,並且是CSS2.1規範的一部分。 –