如何打开我的jQuery模式和我的元素一样宽但不宽?

时间:2016-10-11 23:34:42

标签: jquery jquery-ui modal-dialog width

我正在使用JQuery 1.12.4。我有以下DIV,我打算将其作为对话框打开。

<div id="loginBox" style="display:none">
    <div>Login/Sign Up</div>
    <div id="loginLogos">
            <a href="/auth/google"><img border="0" alt="Google" src="http://www.racertracks.com/assets/google_plus_icon-8d7622763257233cf58e0465806f58d7c4b82b85271c2d03d0e02b2fadc4ac76.jpg"></a>
            <a href="/auth/facebook"><img border="0" alt="Facebook" src="http://runtrax.devbox.com:3000/assets/facebook-b74d7c49fd91aa6ca76518bf46c7b75fa3b23f47028bea4b2ffaa39f5776dd91.png"></a>
            <a href="/auth/twitter"><img border="0" alt="Twitter" src="http://runtrax.devbox.com:3000/assets/twitter_icon-7dbf8db24c3ad328ea28cba340e4f53e033b64b149850324822cdb622d77f331.png"> </a>
 </div></div>

我注意到的是,当我将屏幕宽度减小到大约320像素(模拟移动浏览器宽度)时,对话框的开口宽度超过了元素的总宽度 - 有很多白色图像右侧的空间。在这里查看小提琴 - https://jsfiddle.net/g4a60Lq7/3/。如何使对话框像元素一样宽,而不是更宽?以下是我打开对话框的方式......

  var opt;
opt = {
  autoOpen: false,
  modal: true,
  width: 'auto',
  dialogClass: 'noTitle',
  focus: function() {
    return $(this).dialog('option', 'width', $('#loginBox').width() + 50);
  }
};
$("#loginBox").dialog(opt);
return $("#loginBox").dialog("open");

编辑:想发布图片以回应pritishvaidya的第二个傻瓜......

enter image description here

4 个答案:

答案 0 :(得分:2)

你可以尝试这个jsfiddle:https://jsfiddle.net/43f5qjc8/7/。由于图像源不是非常可靠,这里是另一个来自另一个来源的较小图像的jsfiddle:https://jsfiddle.net/43f5qjc8/13/

它涉及一些Javascript来计算显示内容所需的最小宽度,这可能包含在几行上。如果有办法只用CSS获得相同的结果,我还没有找到它。

以下是Javascript代码:

$(function () {
    $('.opendialog').click(function () { openDialog(); });
    function openDialog() {
        var opt = {
            autoOpen: false,
            modal: true,
            width: 'auto',
            dialogClass: 'noTitle',
            focus: function () {
                var width = 0;
                $('#loginLogos > .logoRow').each(function () {
                    var x = $(this).position().left;
                    var w = $(this).outerWidth();
                    var tmpWidth = x + w;
                    width = Math.max(width, tmpWidth);
                });
                $('#loginLogos').width(width);
                var outerWidth = $('#loginBox').outerWidth();
                $('#loginLogos').width('auto');
                return $(this).dialog('option', 'width', outerWidth);
            }
        };
        $("#loginBox").dialog(opt);
        return $("#loginBox").dialog("open");
    }
});

HTML标记:

<a href='#' class="opendialog">Open</a>
<div id="loginBox" style="display:none">
    <div>Login/Sign Up</div>
    <div id="loginLogos">
        <div class="logoRow">
            <a href="/auth/google"><img border="0" alt="Google" src="..."></a>
            <a href="/auth/facebook"><img border="0" alt="Facebook" src="..."></a>
        </div>
        <div class="logoRow">
            <a href="/auth/twitter"><img border="0" alt="Twitter" src="..."></a>
            <a href="/auth/linkedin"><img border="0" alt="LinkedIn" src="..."></a>
        </div>
    </div>
</div>

CSS样式:

body
{
    background-color: gray;
}

#loginBox
{
    font-family: 'russo_oneregular';
    font-size: 20px;
    display: inline-block;
}

#loginLogos
{
    position: relative;
}

.logoRow
{
    display: inline-block;
}

答案 1 :(得分:1)

只需使用完全响应的Bootstrap模式弹出结构。

  1. 不需要自定义css。
  2. 可以通过bootstrap js属性轻松自定义

    <div class="modal fade" id="myModal" role="dialog">
    <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">Modal Header</h4>
        </div>
        <div class="modal-body">       
    
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        </div>
      </div>   
    </div>
    

  3. https://jsfiddle.net/zigri2612/0o41yogx/

答案 2 :(得分:0)

You need a bit of CSS to modify the max-width of the modal and the box-sizing. Here's your modified example: https://jsfiddle.net/elektronik/3ez3tm3f/1/

The main change is .ui-widget.ui-widget-content[class] { max-width: 90vw; }.

vw is a very useful modern, widely supported CSS unit.

The few other changes (compared to your original fiddle) prevent the modal content from overflowing. box-sizing: border-box; is present in all modern CSS resets.

答案 3 :(得分:0)

在css中使徽标响应:

.col-sm-6

并将宽度从“自动”更改为“80%”:

#loginBox img {
  width: 23%;
  height: auto;
}