如何为链接触发的转换设置动画

时间:2016-01-07 14:10:27

标签: javascript jquery html css

我发现this有用的jQuery用于导航,突出显示为链接的内容滚动。我想我理解它是如何工作的,但是我在点击项目的过渡/动画时遇到了麻烦。我希望这些部分在导航触发时平滑过渡。

我尝试将其添加到CSS

.section {
transition: transform .5s ease-in-out;
}

以及jQuery

$('#navigation').click(function(){
$('.section').animate('slow');
});

我非常感谢在这个特定的例子中解释我做错了什么。

以下是代码和https://jsfiddle.net/r040p7oa/

<div id="navigation">
<ul>
    <li><a href="#section1">Section 1</a></li>
    <li><a href="#section2">Section 2</a></li>     
</ul>
</div>
<div id="sections">
<div id ="section1" class="section">I'm section 1</div>
<div id ="section2" class="section">I'm section 2
</div>   

#sections {
position: absolute;
top: 0;
left: 120px;
}

#navigation {
position: fixed;
top: 0;
left: 0;
}

.active {
background: red;
}

.section {
padding-bottom: 400px;
}

-

$(window).scroll(function() {

var position = $(this).scrollTop();

$('.section').each(function() {
    var target = $(this).offset().top;
    var id = $(this).attr('id');

    if (position >= target) {
        $('#navigation > ul > li > a').removeClass('active');
        $('#navigation > ul > li > a[href=#' + id + ']').addClass('active');
    }
});
});

https://jsfiddle.net/r040p7oa/

2 个答案:

答案 0 :(得分:1)

$('a').click(function(){
    $('html, body').animate({
        scrollTop: $( $.attr(this, 'href') ).offset().top
    }, 500);
    return false;
});

工作fiddle :)来自here的代码

答案 1 :(得分:0)

这应该这样做:

$('a').click(function(e) {
   e.preventDefault();
   $('body, html').animate({scrollTop:$($(this).attr("href")).offset().top});
  });

Here is the JSFiddle demo