问题标签 [scroll]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
5 回答
5465 浏览

c# - 如何更改虚拟模式DataGridView的行位置?

如何更改虚拟模式DataGridView的行位置?

我正在使用Windows 窗体

0 投票
6 回答
9211 浏览

html - 滚动和 css 与 "right: 0px" 对齐

在 HTML 页面中,如果我将一些<div>s 与 "right: 0px" 对齐,它们看起来都非常漂亮,正如我所期望的那样。但是,如果我将浏览器窗口变小并出现水平滚动条,当我向右滚动页面时,我会看到一个意想不到的空白(而不是我的背景颜色<div>)。似乎我<div>的 s 相对于页面的可见区域对齐。请参阅下面的示例代码:

有没有办法让“right:0px”属性使控件相对于整个页面的大小对齐,而不仅仅是可见区域?

谢谢。

0 投票
2 回答
933 浏览

c - 使 GtkScrolledWindow 默认显示所有子级

如何初始化GtkScrolledWindow以通过尽可能增长来避免滚动条?

默认情况下,它似乎尽可能小。

演示代码(退出SIGINT):

0 投票
7 回答
17296 浏览

emacs - 如何让 Emacs 鼠标滚动更慢更流畅?

当我使用鼠标滚轮在 Emacs 中滚动时,它一次滚动 5 行,我认为这太过分了 - 我在哪里设置新值?

此外,当我用鼠标(滚轮或滚动条)在 Emacs 中滚动时,光标会跳到可见屏幕区域内 - 有没有办法覆盖该行为,使其保持在它所在的行上,即使它走出屏幕?换句话说,我不希望新键入的符号出现的位置因滚动而改变。

任何关于如何查看远程代码部分然后快速返回之前位置的替代建议也是受欢迎的。

0 投票
2 回答
491 浏览

css - CSS:带有文本的液体条不会展开

我有一个单杠,它被赋予width100%. 在水平栏中,我有一个在978px容器内左对齐的文本。每当浏览器窗口缩小到小于978px宽度时,页面底部就会出现一个滚动条。每当我向右滚动时,栏不再跨越页面的宽度,而是留在后面。我明白为什么会发生这种情况,但我不知道该怎么做才能解决它。如果您有任何想法,请告诉我。谢谢!

示例页面

0 投票
2 回答
2625 浏览

wpf - Scrolling credits screen in WPF... ideas?

I'm looking to create a (possibly 3D) scrolling credits screen for my app, that is similar to what you might see at the end of a movie, but should be able to include graphics, animations, etc.

What is the best way to go about doing this? I'm thinking I could create a very tall UserControl that contains the entire content to scroll and then just animate it inside a ScrollViewer, or even just a Canvas and animate the position, but there are obvious performance issues with doing something like that and I'm afraid it would be too slow.

It would be cool if the credits could scroll on a 3D surface, kind of like Star Wars, or with a fisheye effect, but I know squat about 3D in WPF.

I do definitely want some kind of fading/alpha-blending so the credits appear to fade in at the bottom and/or fade out at the top, but I'm also stuck on how to do that.*

**Actually, for that I guess I could overlay some semitransparent gradient, so long as the background was a solid color.*

0 投票
2 回答
2241 浏览

flash - 有什么快速的方法可以让 Movieclip 在 Flash 中滚动?

我需要一种方法来获取(容器)MovieClip 中的(内容) MovieClip,以便使用滚动条滚动。

闪存 AS2 组件

  • ScrollArea - 只能滚动外部加载的 SWF。
  • UIScrollBar - 只能滚动 TextFields。

如何滚动内部影片剪辑?

0 投票
1 回答
3998 浏览

javascript - HTML 水平滚动条的高度是多少?

对于叠加层,我需要知道垂直滚动条的高度。

我能做些什么来获得这个价值?FireFox 和 Internet Explorer 的高度是否相同?

谢谢

0 投票
1 回答
409 浏览

python - 将滚动条添加到 pythoncard 应用程序

pythoncard 尚不支持将滚动窗口作为应用程序的主框架。如何将滚动条添加到主框架(背景)?

0 投票
2 回答
5120 浏览

c# - 如何从 DataGridView 接收“滚动框”类型的滚动事件?

我有一个 DataGridView,我正在听它的 Scroll 事件。这给了我一个 ScrollEventArgs 对象,它的 Type 成员应该告诉我已经发生的滚动事件的类型。在MSDN 文档页面上,它说我应该能够通过侦听 ThumbPosition、ThumbTrack、First、Last 和 EndScroll 类型的事件来检测滚动框的移动。

但是,当我拖动滚动框时,我只会得到 LargeDecrement 和 LargeIncrement 类型的事件。

如何访问 ThumbPosition、ThumbTrack、First、Last 和 EndScroll 事件?