How to keep a
constant in size as the user zooms in and out on the page?

后端 未结 6 1753
北荒
北荒 2020-12-11 19:30

Is there an html / css / javascipt way to maintain a

at a constant size in the face of the user\'s zooming the page in and out? That is, using control-plus to incre
6条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-11 19:51

    I read in another post a solution that I didn't test yet...

    Maintain div size (relative to screen) despite browser zoom level

    that's the used javascript:

    //This floating div function will cause a div to float in the upper right corner of the screen at all times. However, it's not smooth, it will jump to the proper location once the scrolling on the iPhone is done. (On my Mac, it's pretty smooth in Safari.) 
    
    function flaotingDiv(){
    
        //How much the screen has been zoomed.
        var zoomLevel = ((screen.width)/(window.innerWidth));
        //By what factor we must scale the div for it to look the same.
        var inverseZoom = ((window.innerWidth)/(screen.width));
        //The div whose size we want to remain constant.
        var h = document.getElementById("fontSizeDiv");
    
        //This ensures that the div stays at the top of the screen at all times. For some reason, the top value is affected by the zoom level of the Div. So we need to multiple the top value by the zoom level for it to adjust to the zoom. 
        h.style.top = (((window.pageYOffset) + 5) * zoomLevel).toString() + "px";
    
        //This ensures that the window stays on the right side of the screen at all times. Once again, we multiply by the zoom level so that the div's padding scales up.
        h.style.paddingLeft = ((((window.pageXOffset) + 5) * zoomLevel).toString()) + "px";
    
        //Finally, we shrink the div on a scale of inverseZoom.
        h.style.zoom = inverseZoom;
    
    }
    
    //We want the div to readjust every time there is a scroll event:
    window.onscroll = flaotingDiv;
    

提交回复
热议问题