0

我想为地图上的选定图像区域添加圆形边框,我该怎么做?

4

4 回答 4

2

你可以使用 jQuery:

$('body').on('click', 'img', function() {
    $(this).addClass('with-round-corners');
});
于 2012-05-16T07:07:17.993 回答
0
img
{
border:0px;
}
img:hover
{
border:1px solid black;
border-radius:5px;
}
于 2012-05-16T07:19:00.120 回答
0

在 click 上使用下面的 JQuery 代码:

$(imageAreasSelector).css({ 'border': '1px solid Red' });
$(imageAreasSelector).css({ 'border-radius': '5px' });
于 2012-05-16T07:19:04.563 回答
0

你可以使用 CSS

img{
    border:none;
}
img:hover{
    border:1px solid;
}
于 2012-05-16T07:10:50.283 回答