我只是注意到,如果我在选项卡中放大网页(通过执行 Ctrl-Plus),然后打开 Chrome 扩展的弹出窗口,它也会被放大。不幸的是,这使它显示了一个垂直滚动条,在更大的范围内,甚至是一个水平滚动条。

我看到其他扩展程序通过仅以 100% 缩放显示它们的弹出窗口以某种方式阻止了这种缩放。问题是怎么做?

最佳答案

对我如何解决它感兴趣的人的快速说明。

首先,我刚刚学到的关于 Chrome 的一些细节。要放大插件的弹出窗口,需要从 Chrome 的设置中打开其选项窗口,然后放大或缩小。然后,即使关闭了选项页面,相应的插件也会零售缩放。要恢复它,只需在“选项”页面上恢复缩放即可。酷,哈!太糟糕了,尽管许多插件的设计无法正确处理它。正如我在我最初的问题中提到的,大多数显示奇怪的滚动条或只是扭曲内容。

这是我在插件中克服它的方法:

首先,您需要确定弹出窗口的当前缩放比例。 (以下内容仅在 Chrome 上测试,取自 this post ):

function getPageZoom()
{
    //RETURN: 1.0 for 100%, and so on
    var zoom = 1;

    try
    {
        var svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
        svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
        svg.setAttribute('version', '1.1');
        document.body.appendChild(svg);
        zoom = svg.currentScale;
        document.body.removeChild(svg);
    }
    catch(e)
    {
        console.error("Zoom method failed: " + e.message);
    }

    return zoom;
}

然后创建一个可滚动的 DIV 来放置你的弹出窗口内容,如果它滚动你就可以了:
#mainSection{
    margin: 0;
    padding: 0;
    overflow-y: auto;       /* The height will be defined in JS */
}

<div id="mainSection">
</div>

然后使用页面缩放通过小的缩放计算设置可滚动的 DIV 的最大高度。一旦 DOM 加载,比如从 onLoad() 事件或在 jQuery 的 $(function(){}); 中加载:
//Get page zoom
var zoom = getPageZoom();

//Using jQuery
var objMain = $("#mainSection");

//Calculate height & offsets of elements inside `mainSection`
//using jQuery's offset() and outerHeight()
//Make sure to multiply results returned by zoom

var offsetElement1 = $("someElement1").offset().top * zoom;
var heightElement2 = $("someElement2").outerHeight() * zoom;

//Apply the calculations of the height (in real situation you'll obviously do more...)
var height = offsetElement1 + heightElement2;

//And finally apply the calculated height by scaling it back down
var scaledHeight = height / zoom;

//Need to convert the result to an integer
scaledHeight = ~~scaledHeight;

//And set it
objMain.css("max-height", scaledHeight  + 'px');

当用户选择更大的缩放比例时,所有这些都应该只在您想要的地方显示一个漂亮的垂直滚动条。

最后,您需要确保如果用户在显示弹出窗口时开始缩放扩展程序的选项页面,您需要关闭它。我选择了这种方法:
    $(window).resize(function()
    {
        var zoom = getPageZoom();

        //Multiply zoom by 100 (to round it to 2 decimal points) and convert to int
        var iZoom = zoom * 100;
        iZoom = ~~iZoom;

        if(window.izoom &&
            iZoom != window.izoom)
        {
            //Close popup
            window.close();
        }

        window.izoom = iZoom;
    });

关于javascript - 如何防止在我的 Chrome 扩展程序中放大弹出窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25904424/

10-17 01:12