Показать всплывающее окно над модальным - PullRequest
1 голос
/ 19 апреля 2019

Я хочу отобразить всплывающее окно на модальной в моем случае использования.Я не могу скрыть или показать какое-либо всплывающее окно или любой другой div поверх модального. Верхняя и левая позиции не устанавливаются для всплывающего окна.Я пробовал z-index, но он не работал.

CSS:

<button id="button1">click</button>
<div class="modal" id="abc">
   <div class="content">
       <h1>Hi</h1>
       <div id="popupabc" hidden="hidden">
         <h1>Hello</h1>
       </div>
   </div>
</div>

JQuery:

$(function(){

$("#button1).on('click',function(e){
   $("#abc").modal('show');
});

$(document).on('click',function(e){
   // getting mouse click positions left(x) and top(y).
   $("#popupabc").css({position:'absolute',left:x,top:y});
   $("#popupabc").show();
});

}

1 Ответ

0 голосов
/ 19 апреля 2019
<script type="text/javascript">
         function ShowPopup(title, body) {
             $("#MyPopup .modal-title").html(title);
             $("#MyPopup .modal-body").html(body);
             $("#MyPopup").modal("show");
         }
</script>
     <style>
      blink {
        animation: blinker 0.6s linear infinite;
        color: #1c87c9;
       }
      @keyframes blinker {  
        50% { opacity: 0; }
       }
       .blink-one {
         animation: blinker-one 1s linear infinite;
       }
       @keyframes blinker-one {  
         0% { opacity: 0; }
       }
       .blink-two {
         animation: blinker-two 1.4s linear infinite;
       }
       @keyframes blinker-two {  
         100% { opacity: 0; }
       }
    </style>

    <div id="MyPopup" class="modal fade" role="dialog" style="margin-top: 236px;margin-left: 245px;width:500px">
    <div class="modal-dialog">
        <!-- Modal content-->
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal">
                    &times;</button>
                <h4 class="modal-title">
                      <%--<img src="../../Images/banner.jpg" class=" img-responsive" style="width: 100%; height:450px">--%>
                    <blink>Here you can type any message which you want..!!</blink>
                </h4>
            </div>

            <div class="modal-footer">
                <button type="button" class="btn btn-danger" data-dismiss="modal">
                    Close</button>
            </div>
        </div>
    </div>
</div>

- это добавлено в код aspx.cs ------ ClientScript.RegisterStartupScript (this.GetType (), «Popup», «ShowPopup ();», true);

...