Element.scroll-more.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:4k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.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.      * Scrolls this element the specified scroll point. It does NOT do bounds checking so if you scroll to a weird value it will try to do it. For auto bounds checking, use scroll().
  7.      * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
  8.      * @param {Number} value The new scroll value
  9.      * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
  10.      * @return {Element} this
  11.      */
  12.     scrollTo : function(side, value, animate){
  13.         var top = /top/i.test(side), //check if we're scrolling top or left
  14.          me = this,
  15.          dom = me.dom,
  16.             prop;
  17.         if (!animate || !me.anim) {
  18.             prop = 'scroll' + (top ? 'Top' : 'Left'), // just setting the value, so grab the direction
  19.             dom[prop] = value;
  20.         }else{
  21.             prop = 'scroll' + (top ? 'Left' : 'Top'), // if scrolling top, we need to grab scrollLeft, if left, scrollTop
  22.             me.anim({scroll: {to: top ? [dom[prop], value] : [value, dom[prop]]}},
  23.               me.preanim(arguments, 2), 'scroll');
  24.         }
  25.         return me;
  26.     },
  27.     
  28.     /**
  29.      * Scrolls this element into view within the passed container.
  30.      * @param {Mixed} container (optional) The container element to scroll (defaults to document.body).  Should be a
  31.      * string (id), dom node, or Ext.Element.
  32.      * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
  33.      * @return {Ext.Element} this
  34.      */
  35.     scrollIntoView : function(container, hscroll){
  36.         var c = Ext.getDom(container) || Ext.getBody().dom,
  37.          el = this.dom,
  38.          o = this.getOffsetsTo(c),
  39.             l = o[0] + c.scrollLeft,
  40.             t = o[1] + c.scrollTop,
  41.             b = t + el.offsetHeight,
  42.             r = l + el.offsetWidth,
  43.          ch = c.clientHeight,
  44.          ct = parseInt(c.scrollTop, 10),
  45.          cl = parseInt(c.scrollLeft, 10),
  46.          cb = ct + ch,
  47.          cr = cl + c.clientWidth;
  48.         if (el.offsetHeight > ch || t < ct) {
  49.          c.scrollTop = t;
  50.         } else if (b > cb){
  51.             c.scrollTop = b-ch;
  52.         }
  53.         c.scrollTop = c.scrollTop; // corrects IE, other browsers will ignore
  54.         if(hscroll !== false){
  55. if(el.offsetWidth > c.clientWidth || l < cl){
  56.                 c.scrollLeft = l;
  57.             }else if(r > cr){
  58.                 c.scrollLeft = r - c.clientWidth;
  59.             }
  60.             c.scrollLeft = c.scrollLeft;
  61.         }
  62.         return this;
  63.     },
  64.     // private
  65.     scrollChildIntoView : function(child, hscroll){
  66.         Ext.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
  67.     },
  68.     
  69.     /**
  70.      * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
  71.      * within this element's scrollable range.
  72.      * @param {String} direction Possible values are: "l" (or "left"), "r" (or "right"), "t" (or "top", or "up"), "b" (or "bottom", or "down").
  73.      * @param {Number} distance How far to scroll the element in pixels
  74.      * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
  75.      * @return {Boolean} Returns true if a scroll was triggered or false if the element
  76.      * was scrolled as far as it could go.
  77.      */
  78.      scroll : function(direction, distance, animate){
  79.          if(!this.isScrollable()){
  80.              return;
  81.          }
  82.          var el = this.dom,
  83.             l = el.scrollLeft, t = el.scrollTop,
  84.             w = el.scrollWidth, h = el.scrollHeight,
  85.             cw = el.clientWidth, ch = el.clientHeight,
  86.             scrolled = false, v,
  87.             hash = {
  88.                 l: Math.min(l + distance, w-cw),
  89.                 r: v = Math.max(l - distance, 0),
  90.                 t: Math.max(t - distance, 0),
  91.                 b: Math.min(t + distance, h-ch)
  92.             };
  93.             hash.d = hash.b;
  94.             hash.u = hash.t;
  95.             
  96.          direction = direction.substr(0, 1);
  97.          if((v = hash[direction]) > -1){
  98.             scrolled = true;
  99.             this.scrollTo(direction == 'l' || direction == 'r' ? 'left' : 'top', v, this.preanim(arguments, 2));
  100.          }
  101.          return scrolled;
  102.     }
  103. });