iosdecelerationRate enum('fast', 'normal'), number
A floating-point number that determines how quickly the scroll view decelerates after the user lifts their finger. You may also use string shortcuts "normal"
and "fast"
which match the underlying iOS settings for UIScrollViewDecelerationRateNormal
and UIScrollViewDecelerationRateFast
respectively. - normal: 0.998 (the default) - fast: 0.99
Please login to continue.