这期内容当中小编将会给大家带来有关利用jquery怎么实现一个鼠标悬浮弹提示框功能,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
//别忘了导入js文件!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>气泡显示</title>
<script type="text/javascript" src="../js/jquery-1.8.3.js" ></script>
<style type="text/css">
.container {
margin-top: 130px;
}
.tip {
padding: 8px 12px;
width: 140px;
display: block;
font-size: 16px;
color: #fff;
font-weight: bold;
background: #ED5517;
cursor: pointer;
margin-left: 400px;
align-content: center;
margin-top: 20px;
margin-bottom: 20px;
}
.content {
position: absolute;
display: none;
padding: 10px;
width: 160px;
background: #e0edf7;
border-radius: 6px;
}
.content::before {
content: "";
position: relative;
top: -20px;
left: 10px;
width: 0;
height: 0;
display: block;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #e0edf7;
}
</style>
</head>
<body>
<div class="container">
<span id="xsztip" class="tip">鼠标悬停显示气泡</span>
<div class="content">
<span>The quick fox jumps over a lazy dog.</span>
</div>
<span id="xsztip2" class="tip">鼠标悬停显示气泡</span>
<div class="content">
<span>The quick fox jumps over a lazy dog.</span>
</div>
<span id="xsztip3" class="tip">鼠标悬停显示气泡</span>
<div class="content">
<span>The quick fox jumps over a lazy dog.</span>
</div>
</div>
<script type="text/javascript">
$(function(){
$("#xsztip").hover(function(){
show_xszimg(this);
},function(){
hide_xszimg(this);
});
$("#xsztip2").hover(function(){
show_xszimg(this);
},function(){
hide_xszimg(this);
});
$("#xsztip3").hover(function(){
show_xszimg(this);
},function(){
hide_xszimg(this);
});
function hide_xszimg(f){
$(f).next().hide()
}
function show_xszimg(f){
var c=$(f);
var e=c.offset();
var a=e.left;
var b=e.top+40;
$(f).next().css({left:a+"px",top:b+"px"}).show();
}
});
</script>
</body>
</html>
上述就是小编为大家分享的利用jquery怎么实现一个鼠标悬浮弹提示框功能了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。