如何在div背景url中使用usemap
我很想念你 你能帮助我吗?我有这样的风格
.lorry{
background: url(../img/lorry.png);background-repeat:no-repeat;
_background: none;
_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/lorry.png');
height: 143px;
width: 385px;
float: left;
margin: 39px 0 0 0;
}
,我想在图像上添加 usemap,这可能吗?
i missed you
can you help me? i have such style
.lorry{
background: url(../img/lorry.png);background-repeat:no-repeat;
_background: none;
_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/lorry.png');
height: 143px;
width: 385px;
float: left;
margin: 39px 0 0 0;
}
I want to add usemap on image, is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能将图像映射放在背景中。如果您需要此功能,则必须对对象进行分层才能实现相同的效果:
“背景”
图像贴图,但透明。
这是一个示例: http://jsfiddle.net/jamietre/fgeee/1/
下面是实现的一般构造这个效果。它的工作原理是在最顶层有一个图像贴图(因此它将处于活动状态),但绑定到透明图像。你看到的实际图像是在一切的背后,并且不是透明的。
您还可以通过跳过第一个图像并将其指定为 Layer2 div 的背景,对两层执行此操作。仅当您要以其原始分辨率显示图像时,这才有效,所以可能没问题,但这个答案更通用。
注意:
You can't put an imagemap in a background. If you need this functionality you will have to layer objects to achieve the same thing:
"background"
image map, but transparent.
Here's an example: http://jsfiddle.net/jamietre/fgeee/1/
Below is the general construct to achieve this effect. It works by having an imagemap on the topmost layer (so it will be active), but bound to a transparent image. The actual image you see is behind everything, and is not transparent.
You can also do this with two layers by skipping the first image, and assigning it as a background to the layer2 div. This will only work if you are going to display the image at its native resolution, so may be fine, but this answer is more general purpose.
Notes:
我只是来到这里,因为我正在尝试做同样的事情,并且我发现一个可以使用没有图像的“地图”。
正如其他人所说,不可能使用没有图像的地图,但我们可以使用DIV 代替。
你要做的就是,在主图像上放置一个 div 并为该 DIV 创建一个链接,下面是我的代码:
HTML
CSS
jsFiddle 我的示例。
参考:CSS 图像映射
I just come up here because I was trying do the same, and I found one one to use "map" without image.
As the other folks said, isn't possible use maps without image, but we can use DIV instead.
What you do is, you place a div over the main image and create a link for that DIV, below follows my code:
HTML
CSS
jsFiddle of my example.
Reference: CSS image maps
不可能在具有背景图像的对象上使用图像映射。 usemap 属性需要图像(img 标签)。
参考:http://www.w3schools.com/tags/att_img_usemap.asp
Using an imagemap on an object with a background-image is not possible. The usemap attribute requires an image (img tag).
Reference: http://www.w3schools.com/tags/att_img_usemap.asp