image map hover effect css or jquery

你。 提交于 2019-12-08 06:13:18

问题


i have made image map already, i want to highlight that particular section on hover using jquery or using css how do i do it?

I did not find any good article on this.

i have all the image map region working fine but the hover effect not wokring

i tried this css

.map{
    background:#fff;
    display:block;
    height:475px;
    opacity:0;
    position:absolute;
    width:320px;
}
#area2 {
    left:320px;
}
#area1:hover, #area2:hover ,#area3:hover,#area4:hover,#area5:hover{
    opacity:0.2;
}

回答1:


This might help you a bit. Mapser is jquery plugin that helps you in such a kind of tasks http://www.outsharked.com/imagemapster/default.aspx?docs.html



来源:https://stackoverflow.com/questions/21473524/image-map-hover-effect-css-or-jquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!