最小变焦 | @viewport.min-zoom (Device Adaptation)

  •   CSS 中文开发手册

    最小变焦 | @viewport.min-zoom (Device Adaptation) - CSS 中文开发手册

    min-zoomCSS的描述符设置通过@viewport定义文档的最小缩放系数。无论是自动还是根据用户要求,浏览器都不会缩放得超出此范围。

    一个缩放因子的1.0或100%不对应任何缩放。较大的值会放大。较小的值会缩小。

    Related at-rule

    @viewport

    初始值

    auto

    百分比值

    the zoom factor itself

    媒体

    visual, continuous

    计算值

    auto, or a non-negative number or percentage as specified

    规范顺序

    the unique non-ambiguous order defined by the formal grammar

    语法

    /* Keyword value */
    min-zoom: auto;
    
    /* <number> values */
    min-zoom: 0.8;
    min-zoom: 2.0;
    
    /* <percentage> value */
    min-zoom: 150%;

    auto用户代理将设置文档的上限缩放比例限制。

    <number>限制缩放因子最小值的非负数。

    <percentage>限制缩放因子最小值的非负百分比。

    形式语法

    auto | <number> | <percentage>

    规范

    Specification

    Status

    Comment

    CSS Device AdaptationThe definition of '"min-zoom" descriptor' in that specification.

    Working Draft

    Initial definition

    浏览器兼容性

    Feature

    Chrome

    Firefox (Gecko)

    Internet Explorer

    Opera

    Safari

    Basic support

    ?

    ?

    ?

    ?

    ?

    Feature

    Android

    Chrome for Android

    Firefox Mobile (Gecko)

    IE Mobile

    Opera Mobile

    Safari Mobile

    Basic support

    ?

    ?

    ?

    ?

    ?

    ?

  •   CSS 中文开发手册
    转载请保留页面地址:https://www.breakyizhan.com/css/32049.html
    原文地址:https://www.cnblogs.com/breakyizhan/p/13216506.html