在自定义框模式中滚动到顶部

Scrolling to the top in Custombox modal

本文关键字:滚动 顶部 模式 自定义      更新时间:2023-12-12

我正在使用Custombox打开一个模态。然而,这个模态可能会有点长,所以我添加了一个"转到顶部"按钮。

我在SO找到了这个,我一直在尝试不同的组合,以使模式滚动回来。

我试过:

$("html, body").animate({
    scrollTop: $("#modal-id").offset().top
}, 800);

以及一些不同的组合来获得偏移量,但我无法将其滚动到模态的顶部。

滚动条属于.custombox-modal-wrapper元素,所以应该滚动它,而不是<body><html>:

$(".custombox-modal-wrapper").animate({
    scrollTop: $("#modal-id").offset().top
}, 800);