h5 右下角浮动按钮_jQuery版可拖动右下角浮动窗口特效

书写css代码。

*{padding:0;margin:0;list-style: none;}

.box{width:100%; overflow:hidden;}

.box-3 dl{ display:table; position:absolute; bottom:5px; right:5px; width:300px; background:#fff;box-shadow: 0 0 7px rgba(0,0,0,.3); border-radius:3px; }

.box-3 dl dd{height: 40px;line-height: 40px; color:#fff; font-size: 16px;position: relative;padding-left: 10px; background:#06b5ff; border-radius:3px 3px 0 0;}

.box-3 dl dd b{ display: block; height:40px; width:40px; position:absolute; top:0; right:0; cursor:pointer;}

.box-3 dl dd b.up{ background:url(../images/up.png) center center no-repeat;}

.box-3 dl dd b.down{ background:url(../images/down.png) center center no-repeat;}

.box-3 dl ul{padding:0 20px; height:165px;}

.box-3 dl ul li{ height:40px; line-height:40px; border-top: 1px dashed #EDEDED;}

.box-3 dl ul li span{ display:inline-block; width:70px; text-align:right;}

.box-3 dl ul li i{ font-style:normal; margin-left:10px;}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
实现一个可拖动悬浮按钮,可以使用以下步骤: 1. 在 HTML 中添加一个悬浮按钮的元素,比如一个 `<div>` 标签。 ```html <div class="floating-button"></div> ``` 2. 使用 CSS 设置该元素的样式,比如设置它的位置、大小、背景色、圆角等。 ```css .floating-button { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background-color: #007bff; border-radius: 50%; z-index: 9999; } ``` 3. 使用 JavaScript 实现拖动功能。可以监听该元素的 `mousedown`、`mousemove`、`mouseup` 事件,通过计算鼠标的位置和元素的位置差,实现元素的拖动。 ```javascript var floatingButton = document.querySelector('.floating-button'); var isDragging = false; var lastX, lastY; floatingButton.addEventListener('mousedown', function(e) { isDragging = true; lastX = e.clientX; lastY = e.clientY; }); floatingButton.addEventListener('mousemove', function(e) { if (isDragging) { var deltaX = e.clientX - lastX; var deltaY = e.clientY - lastY; var rect = floatingButton.getBoundingClientRect(); floatingButton.style.left = rect.left + deltaX + 'px'; floatingButton.style.top = rect.top + deltaY + 'px'; lastX = e.clientX; lastY = e.clientY; } }); floatingButton.addEventListener('mouseup', function() { isDragging = false; }); ``` 这样就实现了一个可拖动悬浮按钮。需要注意的是,对于移动端,需要考虑触摸事件而非鼠标事件。同时,需要使用 CSS 设置 `touch-action: none;`,防止浏览器默认的滚动行为干扰拖动操作。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值