我有一个非常标准的滑块组件,它的滑块 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));