当在DSL(900kbps)上使用IE6.0时,获取图片地址(Image Maps)的时间比获取为每个超链接使用分离图片的导航条时间快56%(354ms:799ms)。
也就是说我们使用Image Maps时,无论有多少个连接在里边,实际只用了一个HTTP请求。当点击图片地址上的某个位置时,触发maps,间接打开网址。
举例代码
<img usemap=”#map1″ border=0 src=”http://great-panda.net/images/2009_xiong_pcti.jpg”>
<map name=”map1″>
<area shape=”rect” coords=”0,100,100,200″ href=”home.html” title=”home”>
<area shape=”rect” coords=”0,0,50,70″ href=”/” title=”index”>
</map>
可以通过这个小工具来帮助你使用ImageMaps :http://tools.great-panda.net/mouseXY.html
发表回复