CustomSlider.js 441 B

12345678910111213141516171819
  1. //customslider.js
  2. cc.Class({
  3. extends: cc.Slider,
  4. properties: {
  5. m_Bar:cc.Mask,
  6. },
  7. OnMoveSloder:function() {
  8. if(this.direction)
  9. this.m_Bar.node.height = this.node.height * this.progress
  10. else
  11. this.m_Bar.node.width = this.node.width * this.progress
  12. },
  13. SetProgress:function(value) {
  14. this.progress = value;
  15. this.OnMoveSloder();
  16. }
  17. });