【问题标题】:Pop up and overlay page弹出和覆盖页面
【发布时间】:2017-05-12 03:35:54
【问题描述】:

我创建了一个带有叠加层的弹出页面(单独的页面加载到 div 中),但我关闭弹出窗口的选项没有显示。

这是弹出窗口的链接: http://jymeross.com/project5.html

如何让关闭窗口(.cancel 类)出现? “X”链接目前仅在此处显示: http://jymeross.com/project5.html#loginScreen

这是代码

<head>

<link rel="stylesheet" href="slider1.css" type="text/css" charset="utf-8" />

<style type="text/css">
.button
{
    width: 150px;
    padding: 10px;
    background-color: #FF8C00;
    box-shadow: -8px 8px 10px 3px rgba(0,0,0,0.2);
    font-weight:bold;
    text-decoration:none;
}
#cover{
    position:fixed;
    top:0;
    left:0;
    background:rgba(0,0,0,0.6);
    z-index:50;
    width:100%;
    height:100%;
    display:none;
}
#gallery
{
    height:525px;
    width:675px;
    margin:0 auto;
    position: relative;
    z-index:100;
    display:none;
    border:5px solid #cccccc;
    border-radius:10px;
}
#gallery:target, #gallery:target + #cover{
    display: block;
    opacity:2;
}
.cancel
{
    display:block;
    position:absolute;
    z-index:100;
    top:3px;
    right:2px;
    height:30px;
    width:35px;
    font-size:30px;
    text-decoration:none;

}
</style>


</head>

<body>


<br><br>
<div align="center">
<a href="#gallery" onclick="load_project1()" class="button">View Gallery</a>

</div><!--close center-->


<div id="gallery">
    <a href="#" class="cancel">&times;</a>
 </div><!--close gallery-->

<div id="cover">
</div>

<script>

    function load_project1() {
     document.getElementById("gallery").innerHTML='<object type="text/html" width="575" height="325" data="project1.html"></object>';
     }

</script>


</body>

【问题讨论】:

  • 你在这个弹出窗口中使用了什么 javascript 库?这是关于 css bug 还是 js 但是?你会具体说明你做了什么来完成什么,什么是到目前为止没有奏效的?
  • 我正在使用 CSS 弹出窗口。在弹出窗口中,当我在底部添加脚本以在弹出 div 中加载另一个 html 页面时,我丢失了 .cancel 类(“x”关闭弹出窗口)。

标签: java function popup load innerhtml


【解决方案1】:

在gallery下制作sub div,然后将内容加载到div中。

<div id="gallery">
  <a href="#" class="cancel">&times;</a>
  <div id="gallery-body"></div>
</div>


function load_project1() {
     document.getElementById("gallery-body").innerHTML='<object type="text/html" width="575" height="325" data="project1.html"></object>';
     }

然后你会在那里保持紧密的链接。

【讨论】:

    猜你喜欢
    • 2023-03-02
    • 2012-09-24
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-02-23
    • 1970-01-01
    • 2011-04-05
    • 2020-09-23
    相关资源
    最近更新 更多