我使用了scrollIntoView,但仍然没有指向第二个任何想法???
我使用了window.scrollTo(0,0),但仍然没有指向第二个任何想法???
.television .chromecast .sun .sunItem > .bulb {
overflow: hidden;
transition: transform .5s, max-height .5s;
transform: scaleY(0);
box-sizing: border-box;
max-height: 0;
transform-origin: center top;
}
.television .chromecast .sun .sunItem.selected > .bulb {
transform: scaleY(1);
max-height: 100%;
}
答案 0 :(得分:5)
我们需要在select函数
上正确调用onSelect() {
this.props.onSelect(this.props.id);
this.focusDiv();
}
答案 1 :(得分:0)
这是预期的行为。滚动位置会保留,但您会从屏幕顶部删除内容,以便最终在页面中向下移动。
在扩展新元素时,尤其是在移动设备上,折叠前面的元素总是一个坏主意。
要解决此问题,您需要将滚动脚本编写到打开部分的顶部。这可以很容易地使用jQuery.ScrollTo()
或类似的东西来实现,但说实话,我只是将前面的部分打开,除非用户有向后滚动的倾向,这需要大量滚动才能回到页面顶部。其他用户体验解决方案,如滚动到顶部链接,可能会派上用场来解决这个问题。