【发布时间】:2016-11-08 15:04:32
【问题描述】:
一段时间以来,我一直在努力让它发挥作用。这可能是一些微不足道的事情和 CSS。
图像没有覆盖页面顶部的 IFrame,而是直接拍摄到底部。
代码:
.overlay{
width: 100%;
height:100%;
position:relative;
}
.overlay1{
z-index: 1;
position:absolute;
left: 55%;
margin-right: -50%;
transform: translate(-50%, -50%);
width: 40px;
height: 20px;
background-color: rgba(0,0,0,0.5);
}
.frame {
width: 100%;
height: 100%;
}
<div class="overlay">
<iframe class="frame" allowtransparency="true" src="http://blah.com"></iframe>
<div class="overlay1">
<img src="http://www.ore-processing.com/d/images/livechat.png" class="my_popup_open"></img>
</div>
</div>
基本上,我试图在 IFrame 顶部放置一个按钮,然后覆盖聊天窗口的弹出窗口 (JQuery)。
提前谢谢你。
【问题讨论】:
-
您希望“实时聊天”图像在哪里?
标签: javascript jquery html css iframe