优秀网站,在获取HTML文档时,花费的时间都不到总响应时间的20%。
1.HTTP较少
请求有get,post,head,put,delete,options和trace。
压缩:使用压缩来减少响应的大小。浏览器可以使用Accept-Encoding头来声明它支持压缩。服务器使用Content-Encoding头确认响应已被压 缩,如下图。
2.减少HTML请求
图片地图:图像地图是带有可点击区域的图像。通常情况下,每个区域是一个相关的超级链接。单击某个区域,就会到达相关的链接。
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />
<map id="planetmap" name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" target="_blank" alt="Sun" />
<area shape="circle" coords="90,58,3" href="mercur.htm" target="_blank" alt="Mercury" />
<area shape="circle" coords="124,58,8" href="venus.htm" target="_blank" alt="Venus" />
</map>
css sprite