<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta content="telephone=no" name="format-detection">
<meta content="email=no" name="format-detection">
<meta name="format-detection" content="email=no" />
<title>标题title>
<link rel="shortcut icon" href="/favicon.ico">
<style type="text/css" media="screen">
body {
font-family: "Helvetica Neue", Helvetica, sans-serif;
}
style>
head>
<body>
这里开始内容
body>
html>
/*给手机设置100px的字体大小; 对于320px的手机匹配是100px*/,
html {
font-size: 100px;
}
@media(min-width: 320px) {
html {
font-size: 100px;
}
}
@media(min-width: 360px) {
html {
font-size: 112.5px;
}
}
@media(min-width: 400px) {
html {
font-size: 125px;
}
}
@media(min-width: 640px) {
html {
font-size: 200px;
}
}
其他手机都是等比例匹配; 因此设计稿上是多少像素的话,那么转换为rem的时候,rem = 设计稿的像素/100 即可;
在移动端使用a标签做按钮的时候或者文字连接的时候,点击按钮会出现一个 "暗色的"背景,比如如下代码:
<style>
a,
button,
input,
optgroup,
select,
textarea {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
style>
<a href="">button1a>
<meta name="viewport" content="width=device-width,
initial-scale=1.0,
minimum-scale=1.0,
maximum-scale=1.0,
user-scalable=0" />
属性基本含义:
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="email=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="shortcut icon" href="/favicon.ico">
body{
font-family: "Helvetica Neue", Helvetica, sans-serif;
}
<a href="tel:15602512356">打电话给:15602512356a>
<a href="sms:10010">发短信给: 10010a>
<p><a href="mailto:[email protected]">发电子邮件a>p>
<p><a href="mailto:[email protected][email protected]">填写抄送地址a>p>
<p><a href="mailto:[email protected][email protected]">填写抄送地址a>p>
<a href="mailto:[email protected][email protected][email protected]">填上密件抄送地址a>
<p><a href="mailto:[email protected][email protected][email protected]">填上密件抄送地址a>p>
<p><a href="mailto:[email protected];[email protected];[email protected]">包含多个收件人、抄送、密件抄送人,用分号隔(;)开多个收件人的地址即可实现a>p>
<p><a href="mailto:[email protected]?subject=【邀请函】">包含主题,可以填上主题a>p>
<p><a href="mailto:[email protected]?body=我来测试下">包含内容,用?body=可以填上内容a>p>
<p><a href="mailto:[email protected]?body=http://www.baidu.com">内容包含链接,含http(s)://等的文本自动转化为链接a>p>
/*如果想要默认的颜色显示红色,代码如下:*/
input::-webkit-input-placeholder{
color:red;
}
/*如果想要用户点击变为蓝色,代码如下:*/
input:focus::-webkit-input-placeholder{
color:blue;
}
input,textarea {
-webkit-appearance: none;
}
a, img {
-webkit-touch-callout: none;
}