0

私は次のCSSを持っています:

.faq {
    position: absolute;
    border: 3px double #078800;
    background: #ECFFEB;
    left: 480px;
    width: 550px;
    z-index: 99999;
}
#showFAQ {
    cursor: pointer;
    color: #018125;
}

JQuery:

$(document).ready(function(){
    $('#showFAQ').click(function(){
        $('.faq').show().css("top", "400px").animate({top: 1150}, 300);
    });

    $('.sButton').click(function(){
        $('.faq').fadeOut('slow');
    });
});

HTML:

<span id="showFAQ">FAQ</span>

...

<div class=faq style='display: none'>
    <table border=0 cellPadding=8 cellSpacing=8 width=100%>
        <tr>
            <td colSpan=2 align=center style="font-family: Verdana, Arial; color: #078800; font-weight: bold; font-size: 18px;">Frequently Aasked Questions</td>
        </tr>
        <tr>
            <td>1. Do I have to complete the entire "Your Information" section?</td>
        </tr>
        <tr>
            <td style="padding-left:50px;">Yes, all information inside the "Your Information" is required to successfully complete the exam. Failure to do so will result in having to retake the exam from scratch.</td>
        </tr>
        <tr>
            <td>2. What if my browser crashes or the page exits and I was in the middle of the exam?</td>
        </tr>
        <tr>
            <td style="padding-left:50px;">Unfortunately, at this time there is no way to save the session. You will have to retake the exam from the start. We are working on fixing that and will update everyone on when it goes in effect.</td>
        </tr>
        <tr>
            <td>3. Can I retake the exam multiple times?</td>
        </tr>
        <tr>
            <td style="padding-left:50px;">Yes, but only the first one will count. If for any reason, you needed to take it more than once, please email HR and let them know why and they will reach out to you to with resolution.</td>
        </tr>
        <tr>
            <td>4. I pressed the "Submit Answers" button and now the button shows "Processing..." but I can't press it anymore?</td>
        </tr>
        <tr>
            <td style="padding-left:50px;">There is an error control put in place to ensure every question is answered before submitting the exam. Please ensure all questions have been answered and then the "Processing..." button will change back to "Submit Answers" which is clickable.</td>
        </tr>
        <tr>
            <td>5. I did everything as per instruction, but I can't still submit the exam.</td>
        </tr>
        <tr>
            <td style="padding-left:50px;">Please reach out to our Helpdesk at x2000 for further troubleshooting steps to assist in completing the exam.</td>
        </tr>
        <tr>
            <td colSpan=2 align=center><input class=sButton type=button value="Close Window" /></td>
        </tr>
    </table>
</div>

私がやろうとしているのは、ポップアップが表示されたら、ページ全体を暗くして、ポップアップがユーザーの注意を引くようにすることです。他にもあることは知っていますが、多くのコーディングを必要とせずに自分で作成することにしました。

不透明度が 45% の次の画像を使用します。 フェードBG

ポップアップのすぐ下のページ全体をカバーするために、repeat-x と repeat-y を使用して画像を配置したいので、ユーザーはまだページを見ることができますが、ポップアップは目立ちます。ポップアップを閉じたら、画像をフェードアウトして Web ページを表示したいと思います。

4

2 に答える 2

3

ウィンドウのフルサイズのブラン​​ケット div を作成し、希望どおりにスタイルを設定します。ページよりも大きい z-index を指定します。ポップアップで新しい div を作成し、ブランケットよりも大きい z-index を指定します。

#blanket {
  z-index:1000;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0.45;
/* Other styling here */
}
#popup {
  z-index:1001;
/* other styling here */
}
于 2013-06-12T22:13:47.347 に答える