h5写一个在底部的悬浮按钮
时间: 2023-11-27 13:49:00 浏览: 77
新版H5跳一跳3D在线小游戏无错完整版_h5_跳一跳_
5星 · 资源好评率100%
可以使用CSS的`position: fixed`属性和`bottom`属性来实现在底部悬浮的效果。以下是一个示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>悬浮按钮</title>
<style>
.float-btn {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #007bff;
color: #fff;
padding: 10px;
border-radius: 50%;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
cursor: pointer;
}
</style>
</head>
<body>
<button class="float-btn">+</button>
</body>
</html>
```
在上面的代码中,我们定义了一个名为`float-btn`的类,并将其设置为`position: fixed`并且位于底部(`bottom: 20px`)。我们还设置了一些样式,例如背景颜色,边框半径等。最后,在`<body>`标签中添加了一个按钮元素,并将其设置为`float-btn`类。
这将在页面底部右侧显示一个圆形按钮。你可以根据需要调整`bottom`和`right`属性的值来更改按钮的位置。
阅读全文