使用
导读: 下面是具体的代码 Coffeescript: $("nav" .find("a" .click(e -˃ e.preventDefault( section=$(this .attr"href" $("h...
下面是具体的代码
Coffeescript:
$("nav").find("a").click(e)->
e.preventDefault()
section=$(this).attr"href"
$("html,body").animate
scrollTop:$(section).offset().top
或JS代码:
$("nav").find("a").click(function(e){
e.preventDefault();
varsection=$(this).attr("href");
$("html,body").animate({
scrollTop:$(section).offset().top
}
);
}
);
HTML代码:
Welcome
About
Section3
Welcometothiswebsite
Aboutthiswebsite,andsuch
Thethirdsection
本篇文章到这里就已经全部结束了,更多精彩内容大家可以关注PHP中文网的HTML视频教程栏目!!!本文转载自中文网
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: 使用
本文地址: https://pptw.com/jishu/664746.html