jquery仿360悬浮球
时间: 2023-10-10 08:15:09 浏览: 120
您好,如果您需要实现一个类似于360悬浮球的效果,可以使用jQuery来实现。下面是一个简单的示例代码:
HTML代码:
```
<div id="float-ball">
<div class="float-ball-icon"><i class="fa fa-comments"></i></div>
<div class="float-ball-panel">
<h3>在线客服</h3>
<p>欢迎来到我们的网站,有什么可以帮到您的?</p>
</div>
</div>
```
CSS代码:
```
#float-ball {
position: fixed;
right: 20px;
bottom: 20px;
width: 50px;
height: 50px;
background-color: #6c757d;
border-radius: 50%;
cursor: pointer;
z-index: 9999;
}
.float-ball-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
}
.float-ball-panel {
display: none;
position: absolute;
right: 60px;
bottom: 60px;
width: 200px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
padding: 10px;
border-radius: 5px;
z-index: 9998;
}
.float-ball-panel h3 {
margin-top: 0;
font-size: 18px;
}
.float-ball-panel p {
margin-bottom: 0;
font-size: 14px;
}
```
jQuery代码:
```
$(function() {
$("#float-ball").hover(function() {
$(".float-ball-panel").fadeIn();
}, function() {
$(".float-ball-panel").fadeOut();
});
});
```
您可以根据需要自定义样式和内容。这个悬浮球的效果只是一个简单的示例,如果您需要更复杂的功能,可以在此基础上进行扩展。
阅读全文