2016-09-23 73 views
1

我一直無法找到有關Ionic爲什麼要默認將離子內容反彈爲false的文檔。爲什麼Ionic默認會將離子內容反彈爲false?

這是我一般的理解,離子已經從本機(ios和android)的滾動處理的控制。所以,我想了解has-bounce配置選項的侷限性。也就是說,如果我設置了反彈到真的,會發生什麼?

While we recommend using the custom Scroll features in Ionic in most cases, sometimes (for performance reasons) only the browser’s native overflow scrolling will suffice, and so we’ve made it easy to toggle between the Ionic scroll implementation and overflow scrolling. http://ionicframework.com/docs/api/directive/ionContent/

邊注:看來,Android已經處理此事件的本地方法? (https://developer.android.com/reference/android/widget/ScrollView.html#setOverScrollMode%28int%29)。

在此先感謝您的任何見解!

回答

1

屬性has-bouncing增加了簡單的效果,當你在視圖的最頂端或底部滾動(見圖片)。它在iOS中默認設置爲false,在iOS中默認設置爲true,因爲它是本機應用程序的iOS默認配置,而不是Android。

bouncing effect

+0

謝謝e666的答案。我想更多地瞭解它爲什麼是iOS本機默認值,而不是Android本機默認值。也就是說,Android是否有其他本地方法來處理「反彈」? '反彈'會破壞原生的Android滾動嗎? '反彈'是否會打破Android上的離子滾動(或其他組件)?或者,這種默認設置與Android的樣式選擇一樣簡單,所以Ionic複製了這種樣式選擇? – tkepa

+0

這是一個簡單的款式選擇。如果你願意,你可以在Android上啓用它。 – e666

相關問題