zoukankan      html  css  js  c++  java
  • jQuery实现可拖动的浮动层(版本2)

    以下是使用jQuery实现可拖动的浮动层的完整代码,复制保存到html文件就可以体验效果。也可以访问以下网址体验效果:http://www.keleyi.com/keleyi/phtml/dragdiv.htm
    光标移动到层上,按住鼠标就可以拖动层。


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>jQuery实现可拖动的浮动层(版本2) - 柯乐义</title>
    <script type="text/javascript" src="http://www.keleyi.com/keleyi/pmedia/jquery-1.8.2.min.js"></script>
    <style type="text/css">
    .box{ position:absolute; top:200px; left:400px; 200px; height:200px; background:#8a9bca; cursor:move;}
    </style>
    <script type="text/javascript">
    $(document).ready(function (e) {
    $(".box").mousedown(function (e) {
    iDiffX = e.pageX - $(this).offset().left;
    iDiffY = e.pageY - $(this).offset().top;
    $(document).mousemove(function (e) {
    $(".box").css({ "left": (e.pageX - iDiffX), "top": (e.pageY - iDiffY) });
    });
    });
    $(".box").mouseup(function () {
    $(document).unbind("mousemove");
    });
    });
    </script>
    </head>
    <body style="2000px">
    <div>欢迎光临!</div>
    <div class="box" id="Drigging">光标移动到层上,<br />按住鼠标就可以拖动该层。<br /><br /><br /><br />柯乐义</div>
    <div>www.keleyi.com</div>
    </body>
    </html>

    本文转载自柯乐义http://www.keleyi.com/dev/433ee98f4133d7b5.htm

  • 相关阅读:
    android-为应用单元测试
    android手机拨号器实现
    android模拟器使用
    android开发环境搭建
    C语言之关键字
    linux shell脚本基础-----3
    linux shell脚本基础-----2
    linux shell脚本基础-----1
    Android学习计划
    MySql 绿色版配置
  • 原文地址:https://www.cnblogs.com/jihua/p/2825173.html
Copyright © 2011-2022 走看看