0

我有一个非常标准的滑块组件,它的滑块 UL。

我想仅将活动类添加到视口中的可见元素。我试过谷歌搜索,但一切都失败了。请问有人能对此有所了解吗?

在此处输入图像描述

以下是滑动代码:

// get all lists that slider was initialised on
$lists = $(this.container).find('> ul');

// get current left position of list
currentPos = $lists.position().left;

// new left position of list is width of a page times target page number
newLeftPos = currentPos - (530 * (newPageNum-1));
4

1 回答 1

1
if($("li").is(":visible")){
    $(this).addClass('active');
}
于 2013-07-30T11:35:48.217 回答