Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 JQuery 中使用ScrollTo方法。我可以水平集中有焦点的元素吗?
任何帮助
是的,您可以使用 $(window).height() 来计算窗口高度,使用 $(document).scrollTop() (文档开始和当前滚动高度之间的空间)来计算屏幕的中间位置。
var middleHeight = $(document).scrollTop() + $(window).height() / 2.0;