2015年9月21日月曜日

jQueryで画面の中央に要素を表示する方法 at HouseTect, JavaScriptな情報をあなたに

http://hisasann.com/housetect/2008/07/jquery_2.html

  1. $(function(){  
  2.     var left = Math.floor(($(window).width() - $("#hoge").width()) / 2);  
  3.     var top  = Math.floor(($(window).height() - $("#hoge").height()) / 2);  
  4.     $("#hoge")  
  5.         .css({  
  6.             "top": top,  
  7.             "left": left,  
  8.             "opacity": 0  
  9.          })  
  10.         .animate({opacity: "1"},{queue: true, duration: 4000, easing: "linear", complete: function(){}});  
  11. });  

0 件のコメント:

コメントを投稿