Questions tagged «scroll»

滚动是指内容在显示屏上的连续滑动。

13
禁用所有移动设备中的滚动
听起来应该在整个Internet上都有解决方案,但是我不确定为什么找不到它。我想在移动设备上禁用水平滚动。基本上试图做到这一点: body{ overflow-x:hidden // disable horizontal scrolling. } 这可能是相关的信息:我的头部标签中也有此信息,因为我也不希望用户能够缩放: <meta content='width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;' name='viewport' /> <meta name="viewport" content="width=device-width" /> 谢谢
69 android  iphone  css  mobile  scroll 

8
将视图添加到滚动视图内的布局底部
所以我的布局基本上是这样的: <ScrollView> <RelativeLayout> <BunchOfViews/> <ImageView android:layout_alignParentBottom="true"/> </RelativeLayout> </ScrollView> 我拥有ScrollView这样的功能,无论屏幕的高度如何,所有布局都始终可见。问题是,在非常高的屏幕上,我仍然希望自己排ImageView在最下面。但是,一个孩子的孩子ScrollView似乎没有明确的底部。将View放置在布局的顶部。我该如何巧妙地解决这个问题?
67 android  layout  scroll 

11
防止div跌破div时向上滚动?
昨天我问了一个类似的问题,但解释得很差,并且没有说明我对纯CSS解决方案的渴望,我认为这应该是可能的,因此我正在尝试。 基本上,我遇到了一个问题,即我有一个可滚动消息div,并且在其下方有一个输入字段。当我单击一个按钮时,我希望输入字段增加100像素,而消息区域也不滚动。 这是一个小提琴,充分展示了问题所在 如您所见,当您单击“添加边距”按钮时,消息div也将向上滚动。我希望它能保持原样。同样,如果您稍微向上滚动,因此只能看到倒数第二条消息,则单击按钮时应类似地保持该位置。 有趣的是,这种行为“有时”得以保留。例如,在某些情况下(我无法完全推断),滚动位置得以保留。我只希望它始终如一。 window.onload = function(e) { document.querySelector(".messages").scrollTop = 10000; }; function test() { document.querySelector(".send-message").classList.toggle("some-margin"); } .container { width: 400px; height: 300px; border: 1px solid #333; display: flex; flex-direction: column; } .messages { overflow-y: auto; height: 100%; } .send-message { width: 100%; display: flex; flex-direction: column; } .some-margin …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.