工作现场 URL 显示问题:
http://69.24.73.172/demos/newDemo/test.html
的HTML:
<div class="small-vote">
<a href="#" class="s plus-one bubble" bubble=":)<br />Vote this comment up<br />if you like it!"></a>
<a href="#" class="s minus-one bubble" bubble=":(<br />Vote this comment down<br />if you disagree with it!"></a>
</div>
这是所有主流浏览器都存在的问题。如果鼠标进入锚链接的下半部分,一切正常。它突出显示它,弹出窗口,您可以单击链接。
如果您输入链接的上半部分,它可以让您单击它,直到鼠标移动 1 个像素,然后链接停用,您必须退出并重新进入该区域才能单击它。
使锚链接无法使用就足够了。
CSS
a.bubble:hover
{
background-color:Red;
}
.s{
background-image:url('../images/sprites.png');
background-repeat:no-repeat;
}
.plus-one
{
display:block;
width:20px;
height:16px;
background-position: -46px -135px;
float:left;
margin-right:1px;
margin-top:1px;
}
.minus-one
{
display:block;
width:20px;
height:16px;
background-position: -67px -135px;
float:right;
margin-left:1px;
margin-top:1px;
}
.minus-one:hover
{
background-position: -67px -153px;
}
.plus-one:hover
{
background-position: -46px -153px;
}
作为参考,当弹出框从锚链接上取下时,链接行为正常。我正在使用 jQuery Bubble Popup v.2.3.1。