最有效的方法是什么(jquery 片段)?
$("#content").scroll(function(e){
var distance_from_top = $("#content").scrollTop();
var theinverse = -1 * distance_from_top;
var theinverse2 = theinverse + "px";
$("#topheader").css( "marginTop", theinverse2);
});
执行上述操作最有效的方法是什么?基本上使 #topheader 上边距等于从顶部滚动的负距离。
$("#content").scroll(function(e){
var distance_from_top = $("#content").scrollTop();
var theinverse = -1 * distance_from_top;
var theinverse2 = theinverse + "px";
$("#topheader").css( "marginTop", theinverse2);
});
What's the most efficient way to do the above? Basically make #topheader top margin equal to the negative distance scrolled from the top.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
缓存缓存缓存。
caching caching caching.
高效或短暂,因为你可以简单地这样做。
如果您想要提高效率,可能需要更多上下文(网页源)。
Efficient or short because you could simply do this for shortness.
When probably need more context (source of the web page) if you want efficiency.