添加活动滚动页面(Add active scroll page)

编程入门 行业动态 更新时间:2024-10-24 20:12:02
添加活动滚动页面(Add active scroll page)

我想知道如何在每个div的向下滚动菜单中添加资产

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

链接: http : //jsfiddle.net/r8325qy8/

I would like to know how I can add an asset when the scroll down menu for each div

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

Link: http://jsfiddle.net/r8325qy8/

最满意答案

您可以通过从任何其他元素中删除.current类并将该类添加到单击的目标来实现。

$(".link").click(function () { var target = $(this); // select the current clicked element $('html, body').animate({ scrollTop: $($.attr(this, 'href')).offset().top }, 500, function() { $('li.current').removeClass('current'); // remove all previous marking target.parent().addClass('current'); // apply the css class to the clicked element }); return false; });

一个工作小提琴

You can achieve that by removing the .current class from any other element and add that class to the target which was clicked.

$(".link").click(function () { var target = $(this); // select the current clicked element $('html, body').animate({ scrollTop: $($.attr(this, 'href')).offset().top }, 500, function() { $('li.current').removeClass('current'); // remove all previous marking target.parent().addClass('current'); // apply the css class to the clicked element }); return false; });

A working fiddle

更多推荐

本文发布于:2023-08-02 19:25:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1380001.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:页面   Add   active   scroll   page

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!