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

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.ux.SliderTip
  3.  * @extends Ext.Tip
  4.  * Simple plugin for using an Ext.Tip with a slider to show the slider value
  5.  */
  6. Ext.ux.SliderTip = Ext.extend(Ext.Tip, {
  7.     minWidth: 10,
  8.     offsets : [0, -10],
  9.     init : function(slider){
  10.         slider.on('dragstart', this.onSlide, this);
  11.         slider.on('drag', this.onSlide, this);
  12.         slider.on('dragend', this.hide, this);
  13.         slider.on('destroy', this.destroy, this);
  14.     },
  15.     onSlide : function(slider){
  16.         this.show();
  17.         this.body.update(this.getText(slider));
  18.         this.doAutoWidth();
  19.         this.el.alignTo(slider.thumb, 'b-t?', this.offsets);
  20.     },
  21.     getText : function(slider){
  22.         return String(slider.getValue());
  23.     }
  24. });