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 3 years have passed since last update.

fadeIn()を使うには先に非表示を

Last updated at Posted at 2020-07-28

#jQuery fadeIn()を使えない?

動的に追加した要素をフェードインさせたい。
fadeIn()は要素が非表示になっている状態でないと使えない。
これを忘れててフェードインできないできない、と悩みました。

解決策は2パターン。

  • パターン1
    CSSで対象要素を非表示display:none;にしておく。

  • パターン2
    hide()で一度非表示にする。

今回は動的に要素を追加するためパターン2を採用。

$('body').append(`<div><img src="${src}"></div>`);
$('div').hide().fadeIn();
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?