【问题标题】:Make twitter Bootstrap popup modal slide and stick to bottom of page制作 twitter Bootstrap 弹出模式幻灯片并粘贴到页面底部
【发布时间】:2014-12-23 06:21:32
【问题描述】:

我正在使用 bootstrap 2.3,我有一个模态框,它会在几秒钟后从页面底部滑动,我希望它粘在屏幕底部。 一切正常,除了当您调整浏览器高度时,模式不会粘在底部。请帮忙!

这是弹出窗口的样子:https://www.dropbox.com/s/kn257b07hdle52i/Screenshot%202014-10-27%2016.09.12.png?dl=0

它会一直持续到您调整窗口大小,然后是:https://www.dropbox.com/s/r0x4mkpj9xvsu61/Screenshot%202014-10-27%2016.10.00.png?dl=0

<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>pop-up</title>

<!-- Bootstrap -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet" media="screen">

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
     <script src="bootstrap/js/bootstrap.js"></script>

   <!-- Duplicated campaign styles -->
   <link href="duplicate.css" rel="stylesheet" media="screen">

</head>
<body>

  <!----------------- Pop-up timeout function-------------------> 

<script type="text/javascript">

$(document).ready(function() {
setTimeout(function() {
  $('#slide-bottom-popup').modal('show');
}, 1000); // milliseconds
});
</script>

 <style>
 /*------------------------------------Pop-up styles-------------------------------------*/

.modal.fade {
top: 100%;
-webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
 -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
   -o-transition: opacity 0.3s linear, top 0.3s ease-out;
      transition: opacity 0.3s linear, top 0.3s ease-out;
}

.modal.fade.in {
top: 74.6%; 

}

.modal {
background-color: #e5e5e5;
position: fixed;
left: 95%;
z-index: 1000;
width: 275px;
height: 250px;
-webkit-border-bottom-right-radius: 0px;
-moz-border-bottom-right-radius: 0px;
border-bottom-right-radius: 0px;
 -webkit-border-bottom-left-radius: 0px;
-moz-border-bottom-left-radius: 0px;
border-bottom-left-radius: 0px;
}

.modal-body {
background-size: 240px;
position: relative;
height: 205px;
padding: 15px;
}

.close {
margin-top: -10px;
z-index: 1050;
margin-left: 210px;
font-size: 20px;
font-weight: bold;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}

.popup-button {
margin-left: 140px;
margin-top: 77px;
font-weight: bold;
}

</style>

<div class="navbar-inner">
</div>

<div class="scrollable" id="super-container">
<div style="min-height: 350px;" class="container">

<!--------------------------------------------- Start Pop-up -------------------> 

<div id='slide-bottom-popup' class="modal hide fade visible-desktop" data-keyboard="false" data-backdrop="false">
<div class="modal-body">
<a class="close" data-dismiss="modal">x</a><br>
<p>I'm a pop sliding from the bottom that's suppose to stick</p>
 <a href="" class="btn-primary btn-plain btn popup-button">CTA</a>
</div>
</div>

    </div>
  </div>

  </body>
</html> 

【问题讨论】:

    标签: html popup modal-dialog sticky twitter-bootstrap-2


    【解决方案1】:

    问题出在您的 CSS 中。您需要设置底部属性而不是顶部属性以获得您想要的结果,但是您不能在 .modal 类上执行此操作,您需要在 .modal-body 类上执行此操作。

    Demo

    CSS:

    .modal.fade.in .modal-body {
        bottom: 0; 
    }
    .modal-body {
        position: absolute;
        bottom: -250px;
        right: 5%;
        padding: 15px;
        width: 275px;
        height: 250px;
        background-color: #e5e5e5;
        border-radius: 6px 6px 0 0;
        -webkit-transition: bottom 0.3s ease-out;
        -moz-transition: bottom 0.3s ease-out;
        -o-transition: bottom 0.3s ease-out;
        transition: bottom 0.3s ease-out;
    }
    .close {
        margin-top: -20px;
        text-shadow: 0 1px 0 #ffffff;
    }
    .popup-button {
        margin-left: 140px;
        margin-top: 77px;
        font-weight: bold;
    }
    

    HTML:

    <div class="modal fade" id="slide-bottom-popup" data-keyboard="false" data-backdrop="false">
        <div class="modal-body">
            <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
            <p>I'm a pop sliding from the bottom that's suppose to stick</p>
            <a href="" class="btn-primary btn-plain btn popup-button">CTA</a>
        </div><!-- /.modal-body -->
    </div><!-- /.modal -->
    

    【讨论】:

    • 这很完美,但是如果我想将 localStorage 设置为 24 小时呢?
    猜你喜欢
    • 1970-01-01
    • 2021-12-17
    • 1970-01-01
    • 2017-11-06
    • 2016-12-05
    • 2014-11-09
    • 1970-01-01
    相关资源
    最近更新 更多