简单的jquery 拖动DIV

稿件来源: 阳光企业网站管理系统   撰稿作者: 太阳光   发表日期: 2011-10-11   阅读次数: 314   查看权限: 游客查看

jquery 拖动层是常用的效果。

 

<!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>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>jquery 拖动DIV</title>
</head>
<style>
    #tt{
        position:absolute;top:0;left:0;width:200px;height:200px;border:1px solid red;background-color:red;
    }
</style>
<script language="javascript">
    $(function () {
        var popupDiv = $("#tt");
        var _move = false;		//移动标记
        var _x, _y;				//鼠标离控件左上角的相对位置
        popupDiv.mousedown(
                function (e) {
                    _move = true;
                    _x = e.pageX - parseInt(popupDiv.css("left"));
                    _y = e.pageY - parseInt(popupDiv.css("top"));
                }).mousemove(
                function (e) {
                    if (_move) {
                        var x = e.pageX - _x;//移动时根据鼠标位置计算控件左上角的绝对位置
                        var y = e.pageY - _y;
                        if (x > 0 && y > 0)
                            popupDiv.css({top:y, left:x});//控件新位置
                    }
                }).mouseup(
                function () {
                    _move = false;
                }).mouseout(function () {
                    _move = false;
                });
    });
</script>
<body>
<div id="tt">注意:style中必须含有position:absolute;top:0;left:0;三个属性否则拖不动!</div>
</body>
</html>

另一种方法

<script type="text/javascript">
    $(function () {
        $("#main img").mousedown(function (e) {
            var oe=e||window.event;
            var odiv = document.getElementById($(this).attr("id"));
            $(this).css("z-index", "100").siblings().css("z-index", "0");
            var $this = odiv;
            var startX = oe.clientX - $this.offsetLeft;
            var startY = oe.clientY - $this.offsetTop;
            //$this.className = "on";
            document.onmousemove = function (e) {
                var oe = e || window.event;
                $this.style.left = oe.clientX - startX + "px";
                $this.style.top = oe.clientY - startY + "px";
            };
            document.onmouseup = function () {
                document.onmousemove = null;
                document.onmouseup = null;
                //$this.className = "off";
                if ($this.releaseCapture) {
                    $this.releaseCapture();
                }
            };
            if ($this.setCapture) {
                $this.setCapture();
            }
            return false;
        });
    });
</script>

关键词: jquery,拖动层   编辑时间: 2012-09-21

  • 感到高兴

    0

    高兴
  • 感到支持

    0

    支持
  • 感到搞笑

    0

    搞笑
  • 感到不解

    0

    不解
  • 感到谎言

    0

    谎言
  • 感到枪稿

    0

    枪稿
  • 感到震惊

    0

    震惊
  • 感到无奈

    0

    无奈
  • 感到无聊

    0

    无聊
  • 感到反对

    0

    反对
  • 感到愤怒

    0

    愤怒
100%(1)
0%(0)
共有0 条评论 发言请遵守【相关规定

网友评论

会员头像
发 表同步腾讯微博    验证码:  点击更新请先登陆
  • 暂无评论
关闭模块文章图片 article Pictrue
  • 我的妈妈爸爸
  • 基于koa2+mysql+vue2.0+Element阳光内容管理系统
  • 代码覆盖率工具 Istanbul 入门教程
  • 全栈工程师的武器——MEAN
  • 9款超炫的 CSS3 复选框(Checkbox)
  • 微信开发在线翻译功能
  • CSS3那些不为人知的高级属性
  • 给easyui的datebox添加清空事件
  • flash写字效果
  • kendoUI系列教程之DropDownList下拉菜单
  • kendoUI系列教程之datetimepicker日期时间选择
  • kendoUI系列教程之datepicker日期选择
  • kendoUI系列教程之combobox下拉列表框
  • kendoUI系列教程之colorpicker
  • kendoUI系列教程之calendar日历表
  • kendoUI系列教程之autocomplete自动补齐