博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Rule 1: Make Fewer HTTP Requests(Chapter 1 of High performance Web Sites)
阅读量:5060 次
发布时间:2019-06-12

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

The rules described in later chapters also present guidelines that help reduce the number of
HTTP requests, but they focus primarily on subsequent page views.
Image Maps
ContractedBlock.gif
ExpandedBlockStart.gif
Image Maps
<img usemap="#map1" border=0 src="/images/imagemap.gif">
<map name="map1">
<area shape="rect" coords="0,0,31,31" href="home.html" title="Home">
<area shape="rect" coords="36,0,66,31" href="gifts.html" title="Gifts">
<area shape="rect" coords="71,0,101,31" href="cart.html" title="Cart">
<area shape="rect" coords="106,0,136,31" href="settings.html" title="Settings">
<area shape="rect" coords="141,0,171,31" href="help.html" title="Help">
</map>
CSS Sprites
ContractedBlock.gifExpandedBlockStart.gifCSS Sprites
 1 <style>
 2 #navbar span {
 3 width:31px;
 4 height:31px;
 5 display:inline;
 6 float:left;
 7 background-image:url(/images/spritebg.gif);
 8 }
 9 .home {
 background-position:0 0; margin-right:4px; margin-left: 4px;}
10 .gifts {
 background-position:-32px 0; margin-right:4px;}
11 .cart {
 background-position:-64px 0; margin-right:4px;}
12 .settings {
 background-position:-96px 0; margin-right:4px;}
13 .help {
 background-position:-128px 0; margin-right:0px;}
14 </style>
Inline Images
ContractedBlock.gifExpandedBlockStart.gifInline Images
1 <IMG ALT="Red Star"
2 SRC="data:image/gif;base64,R0lGODlhDAAMALMLAPN8ffBiYvWW
3 lvrKy/FvcPewsO9VVfajo+w6O/zl5estLv/8/AAAAAAAAAAAAAAAACH5BAEA
4 AAsALAAAAAAMAAwAAAQzcElZyryTEHyTUgknHd9xGV+qKsYirKkwDYiKDBia
5 tt2H1KBLQRFIJAIKywRgmhwAIlEEADs=">
Combined Scripts and Stylesheets

转载于:https://www.cnblogs.com/zhtf2014/archive/2009/09/25/1574247.html

你可能感兴趣的文章
英语单词
查看>>
centos6.8下安装matlab2009(图片转帖)
查看>>
Mongo自动备份
查看>>
求助大神!怎样批量删除数据库表中某个字段中同样的一段字符!
查看>>
VMWARE虚拟机无法访问的三种方法分析
查看>>
enq: SQ - contention
查看>>
cer证书签名验证
查看>>
ant 安装
查看>>
新手Python第一天(接触)
查看>>
vue路由动态加载
查看>>
【原】UIWebView加载本地pdf、doc等文件
查看>>
iOS中ARC内部原理
查看>>
【bzoj1029】[JSOI2007]建筑抢修
查看>>
synchronized
查看>>
你不得不了解的应用容器引擎---Docker
查看>>
easyui datagrid 弹出页面会出现两个上下滚动条处理办法!
查看>>
迭代器和生成器
查看>>
MYSQL分区表功能测试简析
查看>>
codevs 1080 线段树练习
查看>>
JS模块化库seajs体验
查看>>