为什么在IE9中,alt
在我使用缩放时不会出现在图像映射的已定义区域:
<style type="text/css">
#wrap {zoom:50%; -moz-transform:scale(50%); -webkit-transform:scale(50%) }
</style>
<div id="wrap">
<img src="http://www.content.onemexico.net/rosa.jpg" width="640" height="640" usemap="#theMap">
<map name="theMap">
<area shape="rect" coords="240,240,400,400" href="#" alt="RosesByAlt" title="RosesByTitle">
</map>
</div>
是否有IE9的解决方案,在缩放图像的已定义可点击区域上显示文字(alt
或title
)?