• 移动端


    媒体查询常用样式表:
    ```html
        <link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">    // 竖放加载
        <link rel="stylesheet" media="all and (orientation:landscape)"href="landscape.css">   // 横放加载
    ```
        竖屏时使用的样式
    ```html
        <style media="all and (orientation:portrait)" type="text/css">
            #landscape { display: none; }
        </style>
    ```
        //横屏时使用的样式
    ```html
        <style media="all and (orientation:landscape)" type="text/css">
            #portrait { display: none; }
        </style>
    ```

    原创笔记
  • 相关阅读:
    函数对象与闭包
    20.03.19作业
    关键字参数,名称空间和作用域
    作业03.18
    函数第二天
    20.03.17作业
    文件
    20.01.16作业
    前端基础
    前端知识(二)
  • 原文地址:https://www.cnblogs.com/minty/p/7729577.html
Copyright © 2020-2023  润新知