私はjQueryでアニメーション化されたnavbarを一緒に投げていました。これは私が達成しようとしている多くの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仕様の一部です。 –