ion-contentをスクロール後に次の処理を実行したい場合
1085 ワード
scrollToPointなどでスクロール後に次の処理を実行したい場合のJavaScriptの書き方について、
ソースコード例も見当たらないので、こちらに残しておきます。
Promisメソッドを利用する
以下のソースコード例は、ion-contentを500ミリ秒で縦に100px移動した後にfunc()が実行される例:
document.querySelector('ion-content').scrollToPoint(0,100,500).then(func);
function func() {
// ここにスクロール後に実行したい処理
}
Author And Source
この問題について(ion-contentをスクロール後に次の処理を実行したい場合), 我々は、より多くの情報をここで見つけました https://qiita.com/jtksk/items/f1447aa3c2bf2d7689ca著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .