Uploaded image for project: 'ZK'
  1. ZK
  2. ZK-1198

Progressmeter can set the animate speed.

XMLWordPrintable

    • Icon: New Feature New Feature
    • Resolution: Fixed
    • Icon: Normal Normal
    • 7.0.7
    • None
    • Components
    • None

      	_fixImgWidth: _zkf = function() {
      		var n = this.$n(), 
      			img = this.$n("img");
      		if (img) {
      			if (zk.ie6_) img.style.width = ""; //Bug 1899749
      			
      			if (zk(n).isRealVisible()) //Bug 3134159
      				jq(img).animate({
      					width: Math.round((n.clientWidth * this._value) / 100) + "px"
      				}, "slow");
      			
      		}
      	},
      

      Animate speed is hardcode by "slow", but in some case, we need higher speed.

            wenninghsu wenninghsu
            MontyPan MontyPan
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: