内部锚不能在固定的并行网站中使用

时间:2018-10-01 06:41:38

标签: jquery html css

尝试向下滚动单击

  <a href="#scrollto" id="scroll"> <div class="arrow-down"><img class="arrow-open" src="assets/img/arrow-sm.png"></div><a/>

 <p id="scrollto">MadHouse is a collective of strategists, advisors, innovators, creative thinkers, doers, makers, prodders, provocateurs, and believers committed to helping organizations Broaden their Biases.</p>

但是它不起作用。

Javascript

$("#scrollto").click(function() {
    $('html, body').animate({
        scrollTop: $("#scrollto").offset().top
    }, 2000);
});

也不起作用。

URL Working on

我们将不胜感激。

2 个答案:

答案 0 :(得分:0)

您使用错误的ID进行滚动,

尝试一下

$("#scroll").click(function() {
    $('html, body').animate({
        scrollTop: $("#scrollto").offset().top
    }, 2000);
});

您要设置点击#scrollto而不是#scroll

答案 1 :(得分:0)

尝试一下,一切都准备就绪...

$("img.arrow-open").click(function(e) {
    e.preventDefault();
    $('section.background:first-child').addClass('down-scroll');
});