Javascript 模态窗口位置

Javascript 模态窗口位置,javascript,jquery,html,css,Javascript,Jquery,Html,Css,我有一个模式窗口(弹出窗口),不适合屏幕高度。它通过按下按钮打开。按钮可能位于网页的不同部分。是否有办法通过按下按钮解决在屏幕顶部打开的模式窗口(例如顶部:100px)? 当我使用position fixed时,这是在模式窗口上进行滚动的唯一方法,但它不是我想要的方式。 <!DOCTYPE html> <html> <head> <style> /* The Modal (background) */ .modal { display: n

我有一个模式窗口(弹出窗口),不适合屏幕高度。它通过按下按钮打开。按钮可能位于网页的不同部分。是否有办法通过按下按钮解决在屏幕顶部打开的模式窗口(例如顶部:100px)? 当我使用position fixed时,这是在模式窗口上进行滚动的唯一方法,但它不是我想要的方式。


<!DOCTYPE html>
<html>
<head>
<style>
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}
</style>
</head>
<body>

<h2>Animated Modal with Header and Footer</h2>

<!-- Trigger/Open The Modal -->
<button id="myBtn">Open Modal</button>

<!-- The Modal -->
<div id="myModal" class="modal">

  <!-- Modal content -->
  <div class="modal-content">
    <div class="modal-header">
      <span class="close">×</span>
      <h2>Modal Header</h2>
    </div>
    <div class="modal-body">
      <p>Some text in the Modal Body</p>
      <p>Some other text...</p>
    </div>
    <div class="modal-footer">
      <h3>Modal Footer</h3>
    </div>
  </div>

</div>

<script>
// Get the modal
var modal = document.getElementById('myModal');

// Get the button that opens the modal
var btn = document.getElementById("myBtn");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks the button, open the modal 
btn.onclick = function() {
    modal.style.display = "block";
}

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
    modal.style.display = "none";
}

// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
    if (event.target == modal) {
        modal.style.display = "none";
    }
}
</script>

</body>
</html>

<change location of box>
/*模态(背景)*/ .莫代尔{ 显示:无;/*默认情况下隐藏*/ 位置:固定;/*保持原位*/ z指数:1;/*位于顶部*/ 填充顶部:100px;/*框的位置*/ 左:0; 排名:0; 宽度:100%;/*全宽*/ 高度:100%;/*全高*/ 溢出:自动;/*根据需要启用滚动*/ 背景色:rgb(0,0,0);/*回退色*/ 背景色:rgba(0,0,0,0.4);/*黑色w/不透明度*/ } /*模态内容*/ .模态内容{ 位置:相对位置; 背景色:#fefe; 保证金:自动; 填充:0; 边框:1px实心#888; 宽度:80%; 盒影:0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); -webkit动画名称:animatetop; -webkit动画持续时间:0.4s; 动画名称:animatetop; 动画持续时间:0.4s } /*添加动画*/ @-webkit关键帧动画顶点{ 从{top:-300px;不透明度:0} 到{顶部:0;不透明度:1} } @关键帧动画顶点{ 从{top:-300px;不透明度:0} 到{顶部:0;不透明度:1} } /*关闭按钮*/ .结束{ 颜色:白色; 浮动:对; 字号:28px; 字体大小:粗体; } .关闭:悬停, .结束:聚焦{ 颜色:#000; 文字装饰:无; 光标:指针; } .模态标题{ 填充:2x16px; 背景色:#5cb85c; 颜色:白色; } .模态体{填充:2px 16px;} .模态页脚{ 填充:2x16px; 背景色:#5cb85c; 颜色:白色; } 带有页眉和页脚的动画模态 开放模态 × 模态头 情态体中的一些文本

其他一些文本

模态页脚 //获取模态 var modal=document.getElementById('myModal'); //获取打开模式对话框的按钮 var btn=document.getElementById(“myBtn”); //获取关闭模态的元素 var span=document.getElementsByClassName(“关闭”)[0]; //当用户单击该按钮时,打开模式对话框 btn.onclick=函数(){ modal.style.display=“块”; } //当用户单击(x)时,关闭模式对话框 span.onclick=函数(){ modal.style.display=“无”; } //当用户单击模式之外的任何位置时,将其关闭 window.onclick=函数(事件){ 如果(event.target==模态){ modal.style.display=“无”; } }
如果不看看你在尝试什么,就很难提供帮助。发布一些代码。像这样的东西我不想要滚动。你为什么不尝试添加一些东西,比如屏幕截图?你可以通过添加一些css或overflow=hidden来删除滚动,如果helpedit不是我想要的,不要忘记投票,但我发现没有更好的方法。谢谢,伙计。