LoginSignup
9
9

More than 5 years have passed since last update.

メッセージをふんわり表示する

Last updated at Posted at 2014-03-13

スタンダードな方法かわかないがとりあえずメモ。
もっと良い方法があれば教えてほしい。

html
<div id='msg' style="opacity:0">メッセージ</div>
jQuery
$(function(){
  $('#msg').animate({opacity: "1"}, 1000);
});
9
9
1

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
9
9