拖曳原理:

元素的初始位置 + 鼠标距离差 = 元素最终位置

  • 使元素可以拖动

    • function dragElement(obj){
      obj.onmousedown = function(e){
      e = e || window.event; // 兼容 IE obj.setCapture && obj.setCapture(); // 只有 IE 支持,处理 IE8 ctrl+A // 鼠标初始坐标
      var mouseX = e.clientX;
      var mouseY = e.clientY; // 元素初始坐标
      var eleX = obj.offsetLeft;
      var eleY = obj.offsetTop; document.onmousemove = function(e){
      e = e || window.event; // 鼠标新坐标
      var newMouseX = e.clientX;
      var newMouseY = e.clientY; // 元素的新坐标 = 元素初始坐标+(鼠标新坐标-鼠标初始坐标)
      obj.style.left = eleX + newMouseX - mouseX +"px";
      obj.style.top = eleY + newMouseY - mouseY + "px";
      }; document.onmouseup = function(){
      document.onmousemove = null;
      document.onmouseup = null; obj.releaseCapture && obj.releaseCapture();
      }; e.preventDefault && e.preventDefault();
      return false; // 处理高级浏览器 ctrl+A
      };
      };

拖曳: 范围限定

超出临界值,令其等于临界值

  • 上侧临界值 = 0;
  • 右侧临界值 = 视窗 width - ele.offsetWidth;
  • 下侧临界值 = 视窗 height - ele.offsetHeight;
  • 左侧临界值 = 0;

九宫格碰撞检测

  • ele.offsetLeft 或者 ele.offsetTop

    • 获取的是 元素在 包含块 中的坐标
  • ele.getBoundingClientRect();

    • 获取元素在视窗中的坐标(由该 元素.getClientRects() 返回的一组矩形集合)
  • function dragRangeAround(obj, borderRange, badObj){    // 要拖动的元素,吸附范围,磁性盒子
    borderRange = borderRange || 0;
    obj.onmousedown = function(e){
    e = e || window.event; obj.setCapture && obj.setCapture(); // 只有 IE 支持,处理 IE8 ctrl+A var mouseX = e.clientX;
    var mouseY = e.clientY; var eleX = obj.offsetLeft;
    var eleY = obj.offsetTop; var cDir = "noCollision";
    document.onmousemove = function(e){
    e = e || window.event; var newMouseX = e.clientX;
    var newMouseY = e.clientY; fixedX = eleX + newMouseX - mouseX;
    fixedY = eleY + newMouseY - mouseY; var objBorder = obj.style.border && parseInt(obj.style.border);
    if(fixedX < borderRange){
    fixedX = 0;
    }else if(fixedX > (document.documentElement.clientWidth-obj.offsetWidth-borderRange)){
    fixedX = document.documentElement.clientWidth-obj.offsetWidth-objBorder*2;
    } if(fixedY < borderRange){
    fixedY = 0;
    }else if(fixedY > (document.documentElement.clientHeight-obj.offsetHeight-borderRange)){
    fixedY = document.documentElement.clientHeight-obj.offsetHeight-objBorder*2;
    }
    obj.style.left = fixedX + "px";
    obj.style.top = fixedY + "px"; /**** start 碰撞检测 ****/
    if(badObj){
    var isCollision = false; var badTop = badObj.getBoundingClientRect().top;
    var badRight = badObj.getBoundingClientRect().right;
    var badBottom = badObj.getBoundingClientRect().bottom;
    var badLeft = badObj.getBoundingClientRect().left; var objRight = obj.getBoundingClientRect().right;
    var objLeft = obj.getBoundingClientRect().left;
    var objBottom = obj.getBoundingClientRect().bottom;
    var objTop = obj.getBoundingClientRect().top; if( objRight < badLeft){
    cDir = "left";
    if( objRight > (badLeft-borderRange) &&
    objBottom > badTop && objTop < badBottom){
    obj.style.left = badLeft - obj.offsetWidth + "px";
    }
    }else if( objLeft > badRight ){
    cDir = "right";
    if( objLeft < (badRight+borderRange) &&
    objBottom > badTop && objTop < badBottom){
    obj.style.left = badRight + "px";
    }
    }else if( objBottom < badTop){
    cDir = "top";
    if( objBottom > (badTop-borderRange) &&
    objRight > badLeft && objLeft < badRight){
    obj.style.top = badTop - obj.offsetHeight + "px";
    }
    }else if( objTop > badBottom ){
    cDir = "bottom";
    if( objTop < (badBottom+borderRange) &&
    objRight > badLeft && objLeft < badRight){
    obj.style.top = badBottom + "px";
    }
    }else{
    isCollision = true;
    } if(isCollision){
    badObj.innerHTML = cDir+"in's business";
    }else{
    badObj.innerHTML = cDir+"out's business";
    }
    }
    /**** over ****/
    }; document.onmouseup = function(){
    document.onmousemove = null;
    document.onmouseup = null; obj.releaseCapture && obj.releaseCapture();
    }; e.preventDefault && e.preventDefault();
    return false; // 处理高级浏览器 ctrl+A
    };
    return obj;
    };

自定义滚动条

  • <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8" />
    <title>自定义滚动条</title> <style type="text/css">
    body {
    width: 100%;
    color: #000;
    background: #96b377;
    font: 14px Helvetica, Arial, sans-serif;
    } html,
    body {
    height: 100%;
    overflow: hidden;
    } #things {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 27px;
    font-weight: 700;
    color: #210202;
    padding-right: 40px;
    } /**** DIY Scroll ****/
    #diy_scroll_box{
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 7777; width: 40px;
    height: 100%;
    background-color: #eee;
    } #diy_scroll {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 8888; width: 100%;
    height: 20%;
    background-color: #949494;
    } #diy_scroll:hover {
    background-color: #c0c0c0;
    } /**** 上下按键 ****/
    #scroll_up_btn,
    #scroll_down_btn {
    position: absolute;
    z-index: 9999; width: 40px;
    height: 40px;
    background-color: #456;
    } #scroll_up_btn {
    top: 0px;
    right: 0px;
    } #scroll_down_btn {
    bottom: 0px;
    right: 0px;
    } #scroll_up{
    position: absolute;
    top: -10px; border: 20px solid red;
    border-top: 20px solid #f000;
    border-right: 20px solid #f000;
    border-left: 20px solid #f000;
    border-bottom-color: #b3e4aa;
    } #scroll_down{
    position: absolute;
    top: 10px; border: 20px solid red;
    border-bottom: 20px solid #f000;
    border-right: 20px solid #f000;
    border-left: 20px solid #f000;
    border-top-color: #b3e4aa;
    } #scroll_up:hover {
    border-bottom-color: #c5ffbb;
    } #scroll_down:hover {
    border-top-color: #c5ffbb;
    } </style>
    </head> <body> <div id="diy_scroll_box">
    <div id="scroll_up_btn">
    <div id="scroll_up">
    </div>
    </div> <div id="diy_scroll">
    </div> <div id="scroll_down_btn">
    <div id="scroll_down">
    </div>
    </div>
    </div> <div id="things">
    <pre> 姓名:朱元璋别名(外号):朱重八、朱国瑞   性别:男   民族:汉   血型:?   学历:无文凭,秀才举人进士统统的不是,后曾自学过   职业:皇帝   家庭出身:(至少三代)贫农   生卒:1328-1398   最喜欢的颜色:黄色(这个好像没得选)   社会关系:   父亲:朱五四,农民   母亲:陈氏,农民(不好意思,史书中好像没有她的名字)   座右铭:你的就是我的,我还是我的   主要经历:   1328年-1344年放牛   1344年-1347年做和尚,主要工作是出去讨饭(这个……)   1347年-1352年做和尚主要工作是撞钟   1352年-1368年造反(这个猛)   1368年-1398年主要工作是做皇帝   一切的事情都从1328年的那个夜晚开始,农民朱五四的妻子陈氏生下了一个男婴,
    大家都知道了,这个男婴就是后来的朱元璋。
    大凡皇帝出世,后来的史书上都会有一些类似的怪象记载。   比如刮风啊,下暴雨啊,冒香气啊,天上星星闪啊,到处放红光啊
    ,反正就是要告诉你,这个人和别人不一样。
    朱元璋先生也不例外,他出生时,红光满地,夜间房屋中出现异光,以致于邻居以为失
    火了,跑来相救(明实录)。
    </pre>
    </div> <!-- javascript 代码 -->
    <script type="text/javascript">
    var things = document.getElementById("things"); /**** DIY Scroll ****/
    var diyScroll = document.getElementById("diy_scroll");
    var btnHeight = 40;
    diyScroll.style.top = btnHeight+"px"; var diyScrollHeight = document.documentElement.clientHeight-btnHeight*2;
    var thingsScrollHeight = things.offsetHeight-document.documentElement.clientHeight; barHeight = diyScrollHeight*(document.documentElement.clientHeight)/things.offsetHeight;
    diyScroll.style.height = barHeight +"px"; var contentStartTop = 0;
    var mouseStartY = 0;
    var barStartY = 0; /**** 点击滑块 ****/
    diyScroll.onmousedown = function(e){
    e = e || window.event; diyScroll.setCapture && diyScroll.setCapture(); mouseStartY = e.clientY;
    barStartY = diyScroll.offsetTop;
    contentStartTop = things.offsetTop; document.onmousemove = function(e){
    e = e || window.event; var mouseEndY = e.clientY;
    var barEndY = barStartY + mouseEndY - mouseStartY; if(barEndY < btnHeight){
    barEndY = btnHeight;
    }else if(barEndY > (document.documentElement.clientHeight - btnHeight - diyScroll.offsetHeight)){
    barEndY = document.documentElement.clientHeight - btnHeight - diyScroll.offsetHeight;
    } diyScroll.style.top = barEndY+"px";
    things.style.top = contentStartTop + -thingsScrollHeight*(barEndY-barStartY)/(diyScrollHeight-barHeight) +"px";
    }; document.onmouseup = function(){
    document.onmousemove = null;
    document.onmouseup = null;
    diyScroll.releaseCapture && diyScroll.releaseCapture();
    } e.preventDefault && e.preventDefault();
    return false;
    }; document.onmousewheel = scrollWheelFunc;
    document.addEventListener && document.addEventListener("DOMMouseScroll", scrollWheelFunc, false);
    /**** 滚轮事件 ****/
    function scrollWheelFunc(e){
    e = e || window.event; var wheelDir = 0;
    var shouldMove = 5; if(e.wheelDelta){
    wheelDir = (e.wheelDelta>0)?"up":"down";
    shouldMove = (e.wheelDelta>0)?(-5):5;
    }else if(e.detail){
    wheelDir = (e.detail>0)?"down":"up";
    shouldMove = (e.detail>0)?5:(-5);
    }; var barTop = diyScroll.offsetTop;
    var barOffset = barTop; barTop += shouldMove; if(barTop < btnHeight){
    barTop = btnHeight;
    }else if(barTop > (document.documentElement.clientHeight - btnHeight - diyScroll.offsetHeight)){
    barTop = document.documentElement.clientHeight - btnHeight - diyScroll.offsetHeight;
    }; diyScroll.style.top = barTop+"px"; barOffset = barOffset - barTop; contentStartTop = things.offsetTop;
    things.style.top = contentStartTop + thingsScrollHeight*barOffset/(diyScrollHeight-barHeight) +"px"; e.preventDefault && e.preventDefault();
    return false;
    }; /**** 点击按键 ****/
    var scrollDown = document.getElementById("scroll_down_btn");
    var scrollUp = document.getElementById("scroll_up_btn");
    scrollUp.onclick = function(){
    scrollBtnFunc(-5);
    }
    scrollDown.onclick = function(){
    scrollBtnFunc(5);
    } function scrollBtnFunc(barOffset){
    var barTop = diyScroll.offsetTop; if((barTop+barOffset) < btnHeight){
    barOffset = btnHeight - barTop;
    }else if((barTop+barOffset) > (document.documentElement.clientHeight - btnHeight - diyScroll.offsetHeight)){
    barOffset = document.documentElement.clientHeight - btnHeight - diyScroll.offsetHeight - barTop;
    };
    diyScroll.style.top = barTop+barOffset+"px"; contentStartTop = things.offsetTop;
    things.style.top = contentStartTop + -thingsScrollHeight*barOffset/(diyScrollHeight-barHeight) +"px"; }
    </script>
    </body>
    </html>

CSS3_元素拖曳原理_设置全局点击捕获_九宫格碰撞检测_自定义滚动条的更多相关文章

  1. 中小研发团队架构实践之生产环境诊断工具WinDbg 三分钟学会.NET微服务之Polly 使用.Net Core+IView+Vue集成上传图片功能 Fiddler原理~知多少? ABP框架(asp.net core 2.X+Vue)模板项目学习之路(一) C#程序中设置全局代理(Global Proxy) WCF 4.0 使用说明 如何在IIS上发布,并能正常访问

    中小研发团队架构实践之生产环境诊断工具WinDbg 生产环境偶尔会出现一些异常问题,WinDbg或GDB是解决此类问题的利器.调试工具WinDbg如同医生的听诊器,是系统生病时做问题诊断的逆向分析工具 ...

  2. spring设置全局异常处理器

    1.spring设置全局异常,它的原理是向上捕获 spring.xml配置 <!--自定义全局异常处理器--> <bean id="globalExceptionResol ...

  3. 在.NET Core程序中设置全局异常处理

    以前我们想设置全局异常处理只需要这样的代码: AppDomain currentDomain = AppDomain.CurrentDomain; currentDomain.UnhandledExc ...

  4. pages 元素(ASP.NET 设置架构)web.config 详解

    pages 元素(ASP.NET 设置架构)    buffer="[True|False]"   enableEventValidation="[True|False] ...

  5. compilation 元素(ASP.NET 设置架构)

    配置 ASP.NET 用于编译应用程序的所有编译设置. <configuration> 元素  system.web 元素(ASP.NET 设置架构)    compilation 元素( ...

  6. CSS实现元素居中原理解析

    在 CSS 中要设置元素水平垂直居中是一个非常常见的需求了.但就是这样一个从理论上来看似乎实现起来极其简单的,在实践中,它往往难住了很多人. 让元素水平居中相对比较简单:如果它是一个行内元素,就对它的 ...

  7. drf框架中认证与权限工作原理及设置

    0909自我总结 drf框架中认证与权限工作原理及设置 一.概述 1.认证 工作原理 返回None => 游客 返回user,auth => 登录用户 抛出异常 => 非法用户 前台 ...

  8. roleManager 元素(ASP.NET 设置架构),我是因为SSL弱密码(转)

    为角色管理配置应用程序. 此元素是 .NET Framework 2.0 版中的新元素. configuration 元素(常规设置架构)  system.web 元素(ASP.NET 设置架构)   ...

  9. authorization 元素(ASP.NET 设置架构)

    authorization 元素(ASP.NET 设置架构) 其他版本 1(共 1)对本文的评价是有帮助 - 评价此主题 [本文档仅供预览,在以后的发行版中可能会发生更改.包含的空白主题用作占位符.] ...

随机推荐

  1. CMS收集器和G1收集器优缺点

    首先要知道 Stop the world的含义(网易面试):不管选择哪种GC算法,stop-the-world都是不可避免的.Stop-the-world意味着从应用中停下来并进入到GC执行过程中去. ...

  2. LCA(Tarjan)

    时间复杂度:dfs为O(N),dfs过程中处理所有查询对为O(M),总时间复杂度O(N+M) #include<iostream> #include<cstdio> using ...

  3. 14、使用csv和excel存储豆瓣top250电影信息

        记得我们第三关的时候爬取了豆瓣TOP250的电影名/评分/推荐语/链接,现在呢,我们要把它们存储下来,记得用今天课上学的csv和excel,分别存储下来哦-       URL     htt ...

  4. Python系列之 - 异常处理

    python提供的异常处理 BaseException 所有异常的基类 SystemExit 解释器请求退出 KeyboardInterrupt 用户中断执行(通常是输入^C) Exception 常 ...

  5. 【Java】Java随手记

    System.out.printf() : System.out.printf("%d",x);               输出整数 System.out.printf(&quo ...

  6. 版本控制工具 - Git

    版本控制工具 - Git 安装完成后,打开Git Bash,这是一个命令行工具,用于操作仓库和仓库的文件.你可以通过命令将已经存在的项目变成仓库,也可以重新创建一个新项目再通过命令将其变成仓库,还可以 ...

  7. vCenter Server 6 Standard

    准备环境和工具: 三台 ESXi 6.0主机: 准备一台Windows Server 2008 R2系统的虚拟机: VMware-VIM-all-6.0.0.iso 软件下载地址 链接: https: ...

  8. 在visual studio 2013中编译Lua5.3.1

    注:以下是基于 别人的教程或笔记来操作并按照自己的操作记录的纯文字版编译和hello lua过程. 原图文版链接: 原文链接 1.创建空的解决方案: 文件->新建->项目->其他项目 ...

  9. (原创)cocos2dx-lua TableView官方demo分析

    本来是想看看网上的教程文章,结果看了好几篇,复制代码各种报错,有很多不存在的类和变量,根本用不了. 所以干脆自己去看官方demo,经过自己分析测试,已经大概会用了,顺便记录一下. 以下是代码,复制粘贴 ...

  10. 初学python之路-day04

    每天一篇总结,今天学习的是有关于流程控制的知识. 流程控制,顾名思义,在计算机运行中,程序是被某种控制方式按照某种流程或者规律来执行的.而python程序的运行,肯定也是按照某种规律在执行.这些规律可 ...