每页上有多个 div,分为 2 层
我正在使用 HTML5 和 CSS、CSS3 进行编程。在浏览器窗口上,我的客户端需要 2 层以 2 种不同的方式显示信息。
在第 1 层,让我们说我有:
<div id="A1">1234</div>
<div id="A2">5678</div>
在第 2 层,div 是:
<div id="AA1">ABCD</div>
<div id="AA2">EFGH</div>
在这两个层中,div A1 位于 div AA1 的正上方,div A2 位于 div AA2 的正上方。
我现在需要一种显示下方或上方 div 的机制,即隐藏一个 div 并显示其上方或下方相同的 div。
非常感谢您的帮助。
最好的问候,sbguy
I am programming in HTML5 and CSS, CSS3. On the browser window, my client requires 2 layers displaying information in 2 different ways.
On layer 1 let us say I have :
<div id="A1">1234</div>
<div id="A2">5678</div>
In layer 2, the div's are :
<div id="AA1">ABCD</div>
<div id="AA2">EFGH</div>
In both these layers, div A1 is positioned right above div AA1 and div A2 is positioned right above div AA2.
I now need to have a mechanism of showing the div below or above, ie.. hide one div and show the same div above or below it.
Will really appreciate your help.
Best regards, sbguy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要定义在什么条件下显示/隐藏每个
div
,但类似这样的操作应该有效:显然,您可以对第二组 div 重复此操作。
You'll need to define under what conditions to show/hide each
div
, but something like this should work:Obviously you can then repeat this for your second set of divs.