スタンダードな方法かわかないがとりあえずメモ。
もっと良い方法があれば教えてほしい。
html
<div id='msg' style="opacity:0">メッセージ</div>
jQuery
$(function(){
$('#msg').animate({opacity: "1"}, 1000);
});
Go to list of users who liked
More than 5 years have passed since last update.
スタンダードな方法かわかないがとりあえずメモ。
もっと良い方法があれば教えてほしい。
<div id='msg' style="opacity:0">メッセージ</div>
$(function(){
$('#msg').animate({opacity: "1"}, 1000);
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked