我的 css3 动画菜单运行良好。但现在我想给selected
他增加一些课程。
但我不知道如何用 css3 动画实现。
我试过这个:
$('#menu a').click(function(e) {
e.preventDefault();
$(this).addClass("selected");
var h = $(this).attr('href');
$("#conteudo").fadeOut("slow", function() {
$(this).html($(h).html()).fadeIn("slow");
});
});
但不工作。我做了这个小提琴:http: //jsfiddle.net/8L797/