Home > Backend Development > PHP Tutorial > php 如何声明手机头部

php 如何声明手机头部

WBOY
Release: 2016-06-23 14:18:57
Original
973 people have browsed it

header("。。。。");
nbsp;html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">


回复讨论(解决方案)

http://hi.baidu.com/dou917/item/0c9c24dcbbf2b71be0f46fd9

<!doctype html><html lang="en">    <head>        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />        <meta name="viewport" content="width=device-width, maximum-scale=1.0, initial-scale=1.0, user-scalable=0" />        <meta name="apple-mobile-web-app-status-bar-style" content="black">         <title>xxxx</title>  </head><body></body></html>这里面有个meta标签很重要,viewport。1.什么Viewport?手机浏览器是把页面放在一个虚拟的“窗口”(viewport)中,通常这个虚拟的“窗口”(viewport)比屏幕宽,这样就不用把每个网页挤到很小的窗口中(这样会破坏没有针对手机浏览器优化的网页的布局),用户可以通过平移和缩放来看网页的不同部分。移动版的Safari浏览器最新引进了viewport这个meta tag,让网页开发者来控制viewport的大小和缩放,其他手机浏览器也基本支持。2.一般的写法一个常用的针对移动网页优化过的页面的viewport meta标签大致如下: <meta name = "viewport" content = "width=device-width, maximum-scale=1.0, initial-scale=1.0, user-scalable=0" / > width:控制viewport的大小,可以指定的一个值,如果600,或者特殊的值,如device - width为设备的宽度(单位为缩放为100 % 时的CSS的像素)。height:和width相对应,指定高度。initial - scale:初始缩放比例,也即是当页面第一次load的时候缩放比例。maximum - scale:允许用户缩放到的最大比例。minimum - scale:允许用户缩放到的最小比例。user - scalable:用户是否可以手动缩放
Copy after login

其?加上?一句足矣

在php 代码的里面是不是要加一句
header("。。。。");

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template