如何让一个弹出式div悬停在jquery中的一个链接上?

前端之家收集整理的这篇文章主要介绍了如何让一个弹出式div悬停在jquery中的一个链接上?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使弹出窗口悬停在 jquery中的链接上?
<div id="floatbar">
    <a href="" onclick="make it float 10px under this yay">
</div>

解决方法

jquery
$("#floatbar").click(function(e){
    e.preventDefault();
    $(this).find(".popup").fadeIn("slow");
});

css

#floatbar {
    position:relative;
}

.popup {
    position:absolute;
    top:10px;
    left:0px;
    height:30px;
    background:#ccc;
    display:none;
}

HTML

<a id="floatbar" href="#">
    <div class="popup">Hi there</div>
    click here
</a>
原文链接:https://www.f2er.com/css/215707.html

猜你在找的CSS相关文章