欢迎光临
我们一直在努力

如何使用js实现盒子拖拽动画效果

本文实例为大家分享了js实现盒子拖拽动画的具体代码,供大家参考,具体内容如下

js拖拽效果

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="jquery.js"></script>
<style>
* {
    margin: 0;
    padding: 0;
}
.wrap {
    width: 400px;
    height: 200px;
    border: 1px solid #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    margin-top: -100px;
    box-sizing: border-box;
}
.wrap .head {
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    background-color: #ccc;
    box-sizing: border-box;
    line-height: 40px;
    user-select: none;
}
.head:hover {
    cursor: move;
}
.head span {
    float: left;
}
#close {
    float: right;
}
#close:hover {
    cursor: pointer;
}
</style>
</head>
<body>
<div class="wrap">
  <div class="head"> <span>试着拖拽我</span> <span id="close">关闭 X</span> </div>
</div>
<script>
 let wrap = document.querySelector('.wrap');
 let close = document.getElementById('close');
 let head = document.querySelector('.head');
 
 head.onmousedown = function (e) {
  // 获得鼠标在 head 中的坐标 
  let x = e.pageX - wrap.offsetLeft;
  let y = e.pageY - wrap.offsetTop;
  console.log(x, y);
  document.onmousemove = function (e) {
   
  let xx = e.pageX - x;
  let yy = e.pageY - y;
  // 设置边界限制
  xx = xx < 0 ? 0 : xx;
  yy = yy < 0 ? 0 : yy;
  if (xx >= innerWidth - wrap.offsetWidth) {
   document.documentElement.scrollLeft = 20;
  } else {
   document.documentElement.scrollLeft = 0;
  }
  xx = xx > innerWidth - wrap.offsetWidth ? innerWidth-wrap.offsetWidth : xx; 
  yy = yy > innerHeight - wrap.offsetHeight + document.documentElement.scrollTop ? innerHeight - wrap.offsetHeight + document.documentElement.scrollTop : yy;
  wrap.style.left = xx + 'px';
  wrap.style.top = yy + 'px';
  // 禁止X滚动轴
  document.body.style.overflowX = 'hidden';
  wrap.style.marginLeft = 0;
  wrap.style.marginTop = 0;
  };
 };
 
 document.onmouseup = function () {
  document.onmousemove = null;
 };
 
 close.onclick = function () {
  wrap.style.display = 'none';
 };
 </script>
</body>
</html>

 

赞(0) 打赏
未经允许不得转载:新起点博客 » 如何使用js实现盒子拖拽动画效果


关注公众号『新起点软件管家』

获取最新网络资源及破解软件!
带你玩转各样软件...

评论 抢沙发

评论前必须登录!

 

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续给力更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫打赏

微信扫一扫打赏