惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
量子位
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
Y
Y Combinator Blog
L
LangChain Blog
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客

博客园 - Tristan(GuoZhijian)

Core Design Patterns(16) Chain of Responsibility 职责链模式 Core Design Patterns(15) Template Method 模版方法模式 Core Design Patterns(14) State 状态模式 Core Design Patterns(13) Strategy 策略模式 Core Design Patterns(12) Builder 建造者模式 Core Design Patterns(11) Abstract Factory 抽象工厂模式 Core Design Patterns(10) Singleton 单例模式 Core Design Patterns(9) Factory Method 工厂方法模式 Core Design Patterns(8) Prototype 原型模式 Core Design Patterns(7) Facade 外观模式 Core Design Patterns(6) Adapter 适配器模式 Core Design Patterns(5) Flyweight 享元模式 Core Design Patterns(4) Composite 组合模式 Core Design Patterns(3) Bridge 桥接模式 Core Design Patterns(2) Proxy 代理模式 Core Design Patterns(1) Decorator 装饰模式 老调重弹:插件式框架开发的一个简单应用 Microsoft Asp.Net Ajax框架入门(13) PageRequestManager Microsoft Asp.Net Ajax框架入门(12) 了解异步通信层
Behavior模型应用:可拖动的div容器
Tristan(GuoZhijian) · 2008-02-22 · via 博客园 - Tristan(GuoZhijian)

VS 2008

应用Asp.Net Ajax behavior模型,做了一个简单的可拖动的div ^_^

1. html页面

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!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 runat="server">
    
<title>Untitled Page</title>
</head>
<body style="margin:0px;">
    
<form id="form1" runat="server">
    
<asp:ScriptManager ID="sMgr" runat="server">
        
<Scripts>
            
<asp:ScriptReference Path="~/Behaviors/DragBehavior.js" />
        
</Scripts>
    
</asp:ScriptManager>
    
<div id="divDrag" style="position:fixed; width:500px;height:200px;border:solid 1px #000000;">
        
<ul style="list-style:none; margin:0px; padding:0px;">
            
<li style="height:30px; background-color:#cccccc;"></li>
            
<li>
                
            
</li>
        
</ul>
    
</div>
    
    
</form>
    
<script type="text/javascript">
        Sys.Application.add_init(function() 
{
            $create(Tristan.DragBehavior, 
{}{}{}, $get('divDrag'));
        }
);
    
</script>
</body>
</html>

2. client behavior javascript library

/// <reference name="MicrosoftAjax.js"/>
/// written by Guozhijian 2008/01/22


Type.registerNamespace(
"Tristan");

Tristan.DragBehavior 
= function(element) {
    Tristan.DragBehavior.initializeBase(
this, [element]);
    
    
this._isMouseDown = false;
    
this._preLocation = null;
    
this._mouseDownX = null;
    
this._mouseDownY = null;
}


Tristan.DragBehavior.prototype 
= {
    initialize: function() 
{
        Tristan.DragBehavior.callBaseMethod(
this'initialize');
        
        
// Add custom initialization here
        $addHandlers(this.get_element(), {
            
'mousedown' : this._onMouseDown
        }
this);
        $addHandlers(document, 
{
            
'mousemove' : this._onMouseMove,
            
'mouseup' : this._onMouseUp
        }
this);
    }
,
    dispose: function() 
{        
        
//Add custom dispose actions here
        $clearHandlers(this.get_element());
        $clearHandlers(document);
        Tristan.DragBehavior.callBaseMethod(
this'dispose');
    }
,
    _onMouseDown : function(evt) 
{
        
if(evt.button == Sys.UI.MouseButton.leftButton) {
            
this._isMouseDown = true;
            
this._preLocation = Sys.UI.DomElement.getLocation( this.get_element() );
            
this._mouseDownX = evt.clientX;
            
this._mouseDownY = evt.clientY;
            
this.get_element().style.cursor = 'move';
        }

    }
,
    _onMouseUp : function() 
{
        
this._isMouseDown = false;
        
this.get_element().style.cursor = 'normal';
    }
,
    _onMouseMove : function(evt) 
{
        
if(this._isMouseDown) {
            var deltaX 
= evt.clientX - this._mouseDownX;
            var deltaY 
= evt.clientY - this._mouseDownY;
            var x 
= this._preLocation.x + deltaX;
            var y 
= this._preLocation.y + deltaY;
            
if(this._checkLocation(x, y)) {
                Sys.UI.DomElement.setLocation(
this.get_element(), x, y);
            }

        }

    }
,
    _checkLocation : function(x, y) 
{
        var el 
= this.get_element();
        var b 
= Sys.UI.DomElement.getBounds(el);
        
if(x + b.width >= document.documentElement.clientWidth || x <=0 || y + b.height >= document.documentElement.clientHeight || y <= 0{
            
return false;
        }

        
else {
            
return true;
        }

    }

}

Tristan.DragBehavior.registerClass(
'Tristan.DragBehavior', Sys.UI.Behavior);

if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();


posted on 2008-02-22 21:58  Tristan(GuoZhijian)  阅读(871)  评论()    收藏  举报