stackoverflow如何对问题的标记执行悬停效果?如何使用jquery做同样的事情?
编辑:
不是那个mouseover我希望子菜单显示Add Jquery to favorite tags
答案 0 :(得分:23)
这应该做的工作。
我几乎完全按照stackoverflow的方式编写了它。我建立在@Reigel已经创建的按钮上。
希望这会有所帮助。干杯:)
编辑:根据请求在jsFiddle中添加了答案。
HTML:
<a href="#" class="post-tag" title="show questions tagged 'mousehover'" rel="tag">Ruby-on-Rails</a>
<a href="#" class="post-tag" title="show questions tagged 'mousehover'" rel="tag">JQuery</a>
<a href="#" class="post-tag" title="show questions tagged 'mousehover'" rel="tag">CSS</a>
<div class="mouseoverHoverBox">
<span class="pointer">
<span class="plusminus">+</span>
<span class="addRemove">Add </span>
<span class="insert"></span>
<span class="fromTo"> To </span>
<span>Interesting tags</span>
</span>
<br />
<span class="pointer">
<span class="plusminus">+</span>
<span class="addRemove">Add</span>
<span class="insert"></span>
<span class="fromTo"> To </span>
<span>Ignored tags</span>
</span>
</div>
CSS:
.post-tag {
position:relative;
background-color: #E0EAF1;
border-bottom: 1px solid #3E6D8E;
border-right: 1px solid #7F9FB6;
color: #3E6D8E;
font-size: 90%;
line-height: 2.4;
margin: 2px 0px 2px 0px;
padding: 3px 4px;
text-decoration: none;
white-space: nowrap;
}
.post-tag:hover {
position:relative;
background-color:#3E6D8E;
color:#E0EAF1;
border-bottom:1px solid #37607D;
border-right:1px solid #37607D;
text-decoration:none;
}
.mouseoverHoverBox {
position:relative;
top: -6px;
border: 2px ridge #CCC;
padding: 10px;
width: 250px;
}
.plusminus {
color: #E45C0E;
}
.pointer {
cursor: pointer;
width: 100%;
height: 100%;
color: #3E6D8E;
}
JAVASCRIPT:
$('.mouseoverHoverBox').hide();
$('.post-tag').live('mouseover',function(e){
var x = $(this).offset();
$('.mouseoverHoverBox').css('left',x.left-10);
$('.insert').html(' <b>'+$(this).text() + '</b> ');
$('.mouseoverHoverBox').slideDown();
});
$('.pointer').live('mouseover mouseout', function(e){
if(e.type=="mouseover") {
$(this).css('text-decoration','underline');
}else if(e.type="mouseout") {
$(this).css('text-decoration','none');
}
});
$('.pointer').toggle(function() {
$(this).find('.plusminus').text('x ');
$(this).find('.addRemove').text('Remove ');
$(this).find('.fromTo').text('From');
}, function() {
$(this).find('.plusminus').text('+ ');
$(this).find('.addRemove').text('Add ');
$(this).find('.fromTo').text('To');
});
$('.mouseoverHoverBox').mouseleave(function(){
$(this).hide();
});
答案 1 :(得分:1)
对于简单的悬停效果,您应该使用css
,例如
a.hover:hover {
background-color: #ff0000;
}
例如。
如果必须在jQuery中,它看起来像
$('a.myanchorclass').hover(function(){
$(this).css('background-color', '#ff0000');
}, function(){
$(this).css('background-color', '#000000');
});
答案 2 :(得分:-1)
我同意两者只是为了强调,你绝对可以使用:hover in CSS,如果你的目标浏览器比IE6更新,IE6将无法使用:hover除非它是一个链接。