1. <i id='dECPW'><tr id='dECPW'><dt id='dECPW'><q id='dECPW'><span id='dECPW'><b id='dECPW'><form id='dECPW'><ins id='dECPW'></ins><ul id='dECPW'></ul><sub id='dECPW'></sub></form><legend id='dECPW'></legend><bdo id='dECPW'><pre id='dECPW'><center id='dECPW'></center></pre></bdo></b><th id='dECPW'></th></span></q></dt></tr></i><div id='dECPW'><tfoot id='dECPW'></tfoot><dl id='dECPW'><fieldset id='dECPW'></fieldset></dl></div>

    • <bdo id='dECPW'></bdo><ul id='dECPW'></ul>

      <small id='dECPW'></small><noframes id='dECPW'>

      <tfoot id='dECPW'></tfoot>
    1. <legend id='dECPW'><style id='dECPW'><dir id='dECPW'><q id='dECPW'></q></dir></style></legend>

      Twitter Bootstrap - 为什么我的模态与背景一样褪色?

      Twitter Bootstrap - why is my modal as faded as the background?(Twitter Bootstrap - 为什么我的模态与背景一样褪色?)
        <tbody id='lm2TL'></tbody>

            • <tfoot id='lm2TL'></tfoot>
            • <legend id='lm2TL'><style id='lm2TL'><dir id='lm2TL'><q id='lm2TL'></q></dir></style></legend>
                <bdo id='lm2TL'></bdo><ul id='lm2TL'></ul>
              • <small id='lm2TL'></small><noframes id='lm2TL'>

                <i id='lm2TL'><tr id='lm2TL'><dt id='lm2TL'><q id='lm2TL'><span id='lm2TL'><b id='lm2TL'><form id='lm2TL'><ins id='lm2TL'></ins><ul id='lm2TL'></ul><sub id='lm2TL'></sub></form><legend id='lm2TL'></legend><bdo id='lm2TL'><pre id='lm2TL'><center id='lm2TL'></center></pre></bdo></b><th id='lm2TL'></th></span></q></dt></tr></i><div id='lm2TL'><tfoot id='lm2TL'></tfoot><dl id='lm2TL'><fieldset id='lm2TL'></fieldset></dl></div>
                本文介绍了Twitter Bootstrap - 为什么我的模态与背景一样褪色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                所以我正在使用 Twitter Bootstrap,当用户单击注册"按钮时,我有一个向下滑动的模式.

                So I'm using Twitter Bootstrap and I have a modal that slides down when the user clicks the "Register" button.

                唯一的问题是,不仅背景页面褪色,这是一个很好的效果,而且模态框也褪色了.我怎样才能让模态在背景褪色时正常亮度?

                The only problem is that the not only does the background page fade, which is a nice effect, but the modal is also faded. How can I get it so that the modal is normal brightness while the background is faded?

                我在这里创建了一个 JSFiddle 来演示我的问题:http://jsfiddle.net/jononomo/7z8RZ/7/

                I created a JSFiddle to demonstrate my problem here: http://jsfiddle.net/jononomo/7z8RZ/7/

                以下代码创建了一个褪色的模态:

                The following code creates a faded modal:

                <div class="navbar navbar-fixed-top"> 
                    <a href="#registration_modal" data-toggle="modal">
                        Register
                    </a>
                    <div id="registration_modal" class="modal hide fade">
                        <div class="modal-header">
                            <button type="button" class="close" data-dismiss="modal">×</button>
                                <h3 id="myModalLabel">Register An Account</h3>
                        </div>
                
                        <div class="modal-body">
                            Registration form goes here.
                        </div>
                
                        <div class="modal-footer">
                            <button class="btn btn-secondary" data-dismiss="modal">Cancel</button>
                            <button class="btn btn-primary">Register</button>
                        </div>
                
                    </div>
                </div>
                

                注意:如果我删除了外部 div,那么一切正常.所以问题是模式的代码在以下几行中:

                Note: if I remove the outer div, then everything works fine. So the problem is that the code for the modal is within the following lines:

                <div class="navbar navbar-fixed-top">
                </div>
                

                我当然不想删除那个 div,因为我希望启动模式的链接按钮位于固定在屏幕顶部的导航栏中.

                Of course I don't want to remove that div, since I want the button the link that launches the modal to be in the navbar that is fixed to the top of the screen.

                编辑:我将其缩小到外部 div 属于 navbar-fixed-top 类这一事实.当我删除该标签时,一切都按预期工作 - 您可以在此处看到它正常工作:http://jsfiddle.net/jononomo/7z8RZ/8/ 当然,我希望导航栏固定在顶部,所以这并不能解决我的问题.

                Edit: I have narrowed it down to the fact that the outer div is of the class navbar-fixed-top. When I remove that tag, everything works as expected -- you can see it working correctly here: http://jsfiddle.net/jononomo/7z8RZ/8/ Of course, I would like the navbar to be fixed to the top, so this doesn't solve my problem.

                推荐答案

                查看这个问题 在 Bootstrap git 存储库上.

                Check this issue on the Bootstrap git repository.

                然后尝试将模式放在导航栏之前,例如 this fiddle.

                Then try putting the modal before the navbar, like this fiddle.

                <div id="registration_modal" class="modal hide fade">
                    <div class="modal-header">
                        <button type="button" class="close" data-dismiss="modal">×</button>
                        <h3>Register An Account</h3>
                    </div>
                
                    <div class="modal-body">
                        Registration form goes here.
                    </div>
                
                    <div class="modal-footer">
                        <button class="btn btn-secondary" data-dismiss="modal">Cancel</button>
                        <button class="btn btn-primary">Register</button>
                    </div>
                
                </div>
                <div class="navbar navbar-fixed-top"> 
                    <a href="#registration_modal" data-toggle="modal">
                        Register
                    </a>    
                </div>
                

                这篇关于Twitter Bootstrap - 为什么我的模态与背景一样褪色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                业务场景:使用update语句去更新数据库字段。 原因:update接收值不正确。原来代码: $query = "UPDATE student SET date = now() WHERE id = $id";$result = $mysqli-query($query2) or die($mysqli-error); // 问题出现了在这句 $data = $result-fetch_ass
                在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
                问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
                Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                quot;Each child in an array should have a unique key propquot; only on first time render of page(“数组中的每个孩子都应该有一个唯一的 key prop仅在第一次呈现页面时)
                CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
              • <i id='AkYOW'><tr id='AkYOW'><dt id='AkYOW'><q id='AkYOW'><span id='AkYOW'><b id='AkYOW'><form id='AkYOW'><ins id='AkYOW'></ins><ul id='AkYOW'></ul><sub id='AkYOW'></sub></form><legend id='AkYOW'></legend><bdo id='AkYOW'><pre id='AkYOW'><center id='AkYOW'></center></pre></bdo></b><th id='AkYOW'></th></span></q></dt></tr></i><div id='AkYOW'><tfoot id='AkYOW'></tfoot><dl id='AkYOW'><fieldset id='AkYOW'></fieldset></dl></div>
                <legend id='AkYOW'><style id='AkYOW'><dir id='AkYOW'><q id='AkYOW'></q></dir></style></legend><tfoot id='AkYOW'></tfoot>

                • <small id='AkYOW'></small><noframes id='AkYOW'>

                      <tbody id='AkYOW'></tbody>

                      <bdo id='AkYOW'></bdo><ul id='AkYOW'></ul>