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

fadeIn( )メソッドを使用したら、モーダルがcssで指定した位置と違う箇所に出てくる時の解決法

Posted at

jsファイルからモーダルを呼び出そうと以下のようにコードを書いていたが、モーダルをcssで中央に設定したものの、fadeInで呼び出すと左上に行ってしまう。

stylesheet.css
.bg-modal{
  display:flex
  justify-content:center;
  align-items:center;
  display:none;
}
script.js
$(function(){
  $('.signup').click(function(){
    $('.bg-modal').fadeIn();
  });
});

#原因

jqueryの.fadeIn( )メソッドでは、フェードイン時にdisplay:block;が勝手についてしまう。
そのため、cssでdisplay:flex;を指定していたのに反映されずにdisplay:block;が適用されていたのだ。

解決した時のコード

script.js
$(function(){
  $('.signup').click(function(){
    $('.bg-modal').fadeIn().css('display','flex');
  });
});

参考にしたのはこの記事!感謝していますm(_ _)m
https://twotone.me/web/895/

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?