Element.position-more.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:7k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.Element
  3.  */
  4. Ext.Element.addMethods({
  5.     /**
  6.      * Sets the element's box. Use getBox() on another element to get a box obj. If animate is true then width, height, x and y will be animated concurrently.
  7.      * @param {Object} box The box to fill {x, y, width, height}
  8.      * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
  9.      * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
  10.      * @return {Ext.Element} this
  11.      */
  12.     setBox : function(box, adjust, animate){
  13.         var me = this,
  14.          w = box.width, 
  15.          h = box.height;
  16.         if((adjust && !me.autoBoxAdjust) && !me.isBorderBox()){
  17.            w -= (me.getBorderWidth("lr") + me.getPadding("lr"));
  18.            h -= (me.getBorderWidth("tb") + me.getPadding("tb"));
  19.         }
  20.         me.setBounds(box.x, box.y, w, h, me.animTest.call(me, arguments, animate, 2));
  21.         return me;
  22.     },
  23.     
  24.     /**
  25.      * Return a box {x, y, width, height} that can be used to set another elements
  26.      * size/location to match this element.
  27.      * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
  28.      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
  29.      * @return {Object} box An object in the format {x, y, width, height}
  30.      */
  31. getBox : function(contentBox, local) {     
  32.     var me = this,
  33.          xy,
  34.          left,
  35.          top,
  36.          getBorderWidth = me.getBorderWidth,
  37.          getPadding = me.getPadding, 
  38.          l,
  39.          r,
  40.          t,
  41.          b;
  42.         if(!local){
  43.             xy = me.getXY();
  44.         }else{
  45.             left = parseInt(me.getStyle("left"), 10) || 0;
  46.             top = parseInt(me.getStyle("top"), 10) || 0;
  47.             xy = [left, top];
  48.         }
  49.         var el = me.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
  50.         if(!contentBox){
  51.             bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
  52.         }else{
  53.             l = getBorderWidth.call(me, "l") + getPadding.call(me, "l");
  54.             r = getBorderWidth.call(me, "r") + getPadding.call(me, "r");
  55.             t = getBorderWidth.call(me, "t") + getPadding.call(me, "t");
  56.             b = getBorderWidth.call(me, "b") + getPadding.call(me, "b");
  57.             bx = {x: xy[0]+l, y: xy[1]+t, 0: xy[0]+l, 1: xy[1]+t, width: w-(l+r), height: h-(t+b)};
  58.         }
  59.         bx.right = bx.x + bx.width;
  60.         bx.bottom = bx.y + bx.height;
  61.         return bx;
  62. },
  63.     /**
  64.      * Move this element relative to its current position.
  65.      * @param {String} direction Possible values are: "l" (or "left"), "r" (or "right"), "t" (or "top", or "up"), "b" (or "bottom", or "down").
  66.      * @param {Number} distance How far to move the element in pixels
  67.      * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
  68.      * @return {Ext.Element} this
  69.      */
  70.      move : function(direction, distance, animate){
  71.         var me = this,        
  72.          xy = me.getXY(),
  73.          x = xy[0],
  74.          y = xy[1],        
  75.          left = [x - distance, y],
  76.          right = [x + distance, y],
  77.          top = [x, y - distance],
  78.          bottom = [x, y + distance],
  79.         hash = {
  80.          l : left,
  81.          left : left,
  82.          r : right,
  83.          right : right,
  84.          t : top,
  85.          top : top,
  86.          up : top,
  87.          b : bottom, 
  88.          bottom : bottom,
  89.          down : bottom         
  90.         };
  91.         
  92.       direction = direction.toLowerCase();    
  93.       me.moveTo(hash[direction][0], hash[direction][1], me.animTest.call(me, arguments, animate, 2));
  94.     },
  95.     
  96.     /**
  97.      * Quick set left and top adding default units
  98.      * @param {String} left The left CSS property value
  99.      * @param {String} top The top CSS property value
  100.      * @return {Ext.Element} this
  101.      */
  102.      setLeftTop : function(left, top){
  103.     var me = this,
  104.      style = me.dom.style;
  105.         style.left = me.addUnits(left);
  106.         style.top = me.addUnits(top);
  107.         return me;
  108.     },
  109.     
  110.     /**
  111.      * Returns the region of the given element.
  112.      * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
  113.      * @return {Region} A Ext.lib.Region containing "top, left, bottom, right" member data.
  114.      */
  115.     getRegion : function(){
  116.         return Ext.lib.Dom.getRegion(this.dom);
  117.     },
  118.     
  119.     /**
  120.      * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
  121.      * @param {Number} x X value for new position (coordinates are page-based)
  122.      * @param {Number} y Y value for new position (coordinates are page-based)
  123.      * @param {Mixed} width The new width. This may be one of:<div class="mdetail-params"><ul>
  124.      * <li>A Number specifying the new width in this Element's {@link #defaultUnit}s (by default, pixels)</li>
  125.      * <li>A String used to set the CSS width style. Animation may <b>not</b> be used.
  126.      * </ul></div>
  127.      * @param {Mixed} height The new height. This may be one of:<div class="mdetail-params"><ul>
  128.      * <li>A Number specifying the new height in this Element's {@link #defaultUnit}s (by default, pixels)</li>
  129.      * <li>A String used to set the CSS height style. Animation may <b>not</b> be used.</li>
  130.      * </ul></div>
  131.      * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
  132.      * @return {Ext.Element} this
  133.      */
  134.     setBounds : function(x, y, width, height, animate){
  135.     var me = this;
  136.         if (!animate || !me.anim) {
  137.             me.setSize(width, height);
  138.             me.setLocation(x, y);
  139.         } else {
  140.             me.anim({points: {to: [x, y]}, 
  141.               width: {to: me.adjustWidth(width)}, 
  142.               height: {to: me.adjustHeight(height)}},
  143.                      me.preanim(arguments, 4), 
  144.                      'motion');
  145.         }
  146.         return me;
  147.     },
  148.     /**
  149.      * Sets the element's position and size the specified region. If animation is true then width, height, x and y will be animated concurrently.
  150.      * @param {Ext.lib.Region} region The region to fill
  151.      * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
  152.      * @return {Ext.Element} this
  153.      */
  154.     setRegion : function(region, animate) {
  155.         return this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.animTest.call(this, arguments, animate, 1));
  156.     }
  157. });