博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Responsive Web Design
阅读量:6248 次
发布时间:2019-06-22

本文共 2173 字,大约阅读时间需要 7 分钟。

Responsive Web Design

browser window default size: 1024×768 px

RWD:

HEX: 十六进制

一、响应式设计

1、border-radius

2、linear-gradient
background-color: #42c264;
background-image: -webkit-linear-gradient(#4fec50, #42c264);
background-image: -moz-linear-gradient(#4fec50, #42c264);
background-image: -o-linear-gradient(#4fec50, #42c264);
background-image: -ms-linear-gradient(#4fec50, #42c264);
background-image: -chrome-linear-gradient(#4fec50, #42c264);
background-image: linear-gradient(#4fec50, #42c264);

3、media screen

创建媒体查询时,最常用的是设备的视口宽度( width )和屏幕宽度( device-width )
body {
background-color: grey;
}
@media screen and (max-width: 960px) {
body {
background-color: red;
}
}
@media screen and (max-width: 768px) {
body {
background-color: orange;
}
}
@media screen and (max-width: 550px) {
body {
background-color: yellow;
}
}
@media screen and (max-width: 320px) {
body {
background-color: green;
}
}

@import url("phone.css") screen and (max-width:360px);

CSS2 用media属性为样式表指定设备类型<link rel="stylesheet" type="text/css" media="screen" href="screen-styles.css">

? width :视口宽度。

? height :视口高度。
? device-width :渲染表面的宽度(对我们来说,就是设备屏幕的宽度)。
? device-height :渲染表面的高度(对我们来说,就是设备屏幕的高度)。
? orientation :检查设备处于横向还是纵向。
? aspect-ratio :基于视口宽度和高度的宽高比。一个 16∶9 比例的显示屏可以这样
定义 aspect-ratio: 16/9 。
? device-aspect-ratio :和 aspect-ratio 类似,基于设备渲染平面宽度和高度的
宽高比。
? color :每种颜色的位数。例如 min-color: 16 会检测设备是否拥有 16位颜色。
? color-index :设备的颜色索引表中的颜色数。值必须是非负整数。
? monochrome :检测单色帧缓冲区中每像素所使用的位数。值必须是非负整数,如
monochrome: 2 。
? resolution :用来检测屏幕或打印机的分辨率,如 min-resolution: 300dpi 。还
可以接受每厘米像素点数的度量值,如 min-resolution: 118dpcm 。
? scan :电视机的扫描方式,值可设为 progressive (逐行扫描)或 interlace (隔
行扫描)。如 720p HD电视(720p的 p即表明是逐行扫描)匹配 scan: progressive ,
而 1080i HD 电视(1080i中的 i表明是隔行扫描)匹配 scan: interlace 。
? grid :用来检测输出设备是网格设备还是位图设备。

<meta name="viewport" content="initial-scale=2.0,width=device-width" />

把如下 JavaScript代码复制到每个需要自适应图片的网页的头部(紧跟title后):

<script type="text/javascript">document.cookie='resolution='+Math.maxscreen.width,screen.height)+'; path=/';</script>
自适应图片方案默认为此创建的目录是 assets 。

CSS 网格系统

? Semantic ();
? Skeleton ();
? Less Framework ();
? 1140 CSS Grid ();
? Columnal ()。

转载于:https://blog.51cto.com/13505608/2045825

你可能感兴趣的文章
React Native
查看>>
最优化
查看>>
HDU1495 非常可乐
查看>>
CCF NOI1071 Pell数列
查看>>
Studio快捷键
查看>>
75. Sort Colors(按颜色进行排序)(leetcode)
查看>>
4_文件与目录权限
查看>>
SQLServer 2008 R2 清空日志文件
查看>>
总结第八天
查看>>
向空对象添加数据以及for in 遍历
查看>>
基础才是重中之重~理解内存中的栈和堆
查看>>
js错误问题 The operation is insecure.
查看>>
第四章 表达式
查看>>
Python数值计算:一 使用Pylab绘图(3)
查看>>
python爬虫知识点总结(十八)Scrapy框架基本使用
查看>>
限制textarea的字数(包括复制粘贴)
查看>>
ArcGIS Server中的各种服务
查看>>
HIVE: Transform应用实例
查看>>
Some examples about how to write anonymous method and lambda expression
查看>>
linux下可以禁用的一些服务
查看>>