responsive designs

阅读更多

响应式布局主要用来当遇到不同屏幕大小的时候,我们的网页还可以以比较友好的方式显示给用户。主要有4中类型的屏幕,
 
1、宽屏的台式机
 
2、便携式的笔记本
 
3、平板电脑
 
4、智能手机
 
 
下图是不同设备中同一个网页的不同显示效果


 
 
响应式布局主要用到的css中media query,它可以判断当前屏幕的尺寸。
 
有关css media query  谷歌一下就可以找到详细资料
 
其他的就是根据不同屏幕宽度来实现我们的布局了。
 
常见的有导航栏的响应式布局,表格的自使用,图像的自适用,网格多列布局的自适应等。
 
下面我们来演示一个机遇多列布局的响应式布局。
 
当屏幕尺寸在 10em(160px)
 
其他2列浮动,占据一行,同时设置它的字体大小和颜色(区分)
 
42em(672px0 )  
 
3列都浮动,同时宽度按照 2:1:1来分配
 
width > 75em (1200px)
 
3列都浮动,但我们把字体的大小设置大一点。
 
 
 

 

 

 
从上面的3副图片可以看出来,我们页面确实可以根据不同的屏幕大小来自使用显示内容了。
 
 
 


	
		
		
		grid responsive layout
		
		
		
		
		
	
	
	
		
		

grid responsive layout学习

Apple schedules 'iPad Mini' event for October 23

One of the worst-kept secrets in tech has been confirmed: Apple will hold an event October 23 in San Jose, California, at which the company is widely expected to unveil a smaller, cheaper version of its popular iPad called "Mini".

Microsoft Surface tablet goes on sale for $499

The Microsoft Surface tablet picture has come into focus. The Redmond giant filled in the blanks on the new tablet's availability and specs.

AOL unveils Alto, an email service that syncs 5 accounts

AOL, struggling to shed its outdated image, is reimagining one of the most visibly aging parts of its platform: Its email service.

 
参考 : http://jquerymobile.com/demos/1.3.0-beta.1/docs/demos/grids/grid-custom.html#

http://css-tricks.com/css-media-queries/
 
http://www.copyblogger.com/mobile-responsive-design-101/

你可能感兴趣的:(responsive,css-media-query)