锚点和淡入效果

时间:2012-09-10 22:11:39

标签: jquery

我的页面上有<a>myLink类。加载DOM时,我想hide并使用fadeIn效果。但是,使用下面的代码我看不到任何动画,有什么不对?

$(document).ready(function() {

    $('a.myLink').css('display','block')
                 .html('&nbsp;')
                 .hide()
                 .fadeIn('slow',function() { $(this).html('lorem'); });

});

1 个答案:

答案 0 :(得分:0)

喜欢这样:演示 http://jsfiddle.net/E9uht/1/ http://jsfiddle.net/E9uht/

希望它适合原因:)如果我遗漏了任何东西,请知道!

<强>码

$(document).ready(function() {

    $('a.myLink').css('display', 'block')
                 .html('&nbsp;') //<=if you comment me then I will show full link.:)
                 .hide('slow',function() {
                    $(this).fadeIn('slow', function() {
                        $(this).html('lorem');
                    });
    })


});​