0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Alpinejs】ページトップにスクロールする方法

Posted at

ページネーション機能を持つ画面で次へボタンを押した後に画面上部に自動でスクロールした状態にしたい場合、
対応するコンポーネントに以下のAlpinejsのx-initを追記するだけで対応可能です。

<div x-init="window.scrollTo(0, 0)">

</div>

これにより例えば、
マルチステップのユーザー登録画面でいくつかのFormのコンポーネントで構成されている場合、
次へを押すと画面が切り替わるたびに画面最上部にスクロール済みの状態にすることができます。

ちなみに投稿者自身は、LaravelのLivewire内で使っています。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?