I have a plugin in which I provide a simple div container and the plugin creates all kinds of dom
elemnents inside the container through javascript.
The basic structure that the plugin creates is something like this:
Wrapper Div (Position:Relative)
- Left Container (Position: Absolute)
- Left Top sub-container (Position: Absolute)
- Right Container (Position: Relative)
- Right Top sub-container (Position: Absolute)
- Right Sub-Container frame with absolute items (Position: Relative)
Here's the fiddle I have created for the exact same structure that the plugin creates : http://jsfiddle.net/FsYt8/
ここで私が直面している問題は、コンテンツがオーバーフローしたときに、マウス ホイールでコンテンツをスクロールできることです (フィドルのように)。ただし、下にスクロールすると、上の 2 つの上部の左右のサブコンテナー (赤/青のバー) の色がフィドルに表示され、コンテンツと共に下にスクロールしないようにします。
プラグインは div 内に dom 要素を作成container-right-frame
し、要素を絶対位置に配置します (その後、container-right
の上/左に配置されます)。上記の 2 つのバーの固定された配置を実現するにはどうすればよいですか?