Skip to content

Instantly share code, notes, and snippets.

@baobao
Created April 1, 2013 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baobao/0557040e67728f2eff70 to your computer and use it in GitHub Desktop.
Save baobao/0557040e67728f2eff70 to your computer and use it in GitHub Desktop.
jqueryを使ったDOMのテスト
$(function(){
var scene1 = "<img src='assets/scene1.png' />";
$("#content").append("<div id='scene'></div>");
//非表示
$("#scene").css("visibility", "hidden");
//シーン追加
$("#scene").html(scene1) ;
//シーンの初期化
$("#scene").css("opacity",0);
//表示
$("#scene").css("visibility", "visible");
$("#scene").animate({
opacity: 1
}, 3000 );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment