zoukankan      html  css  js  c++  java
  • 201508061158_《移动开发之——样式链表》

    <link rel=”apple-touch-startup-image” href=”startup.png” /> // 设置开始页面图片
    <link rel=”apple-touch-icon” href=”iphon_tetris_icon.png”/> // 在设置书签的时候可以显示好看的图标
    <link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">    // 肖像模式样式
    <link rel="stylesheet" media="all and (orientation:landscape)"href="landscape.css"   // 风景模式样式
    
    //竖屏时使用的样式
    <style media="all and (orientation:portrait)" type="text/css">
    #landscape { display: none; }
    </style>
    
    //横屏时使用的样式
    <style media="all and (orientation:landscape)" type="text/css">
    #portrait { display: none; }
    </style>
    前端-语言
  • 相关阅读:
    C#
    C#
    C#
    C#
    C#
    C#
    系统工具
    远程登录
    文件传输服务
    软件安装
  • 原文地址:https://www.cnblogs.com/beesky520/p/4707605.html
Copyright © 2011-2022 走看看