金豪看板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
392 B

8 months ago
  1.  $(window).load(function(){
  2. $(".loading").fadeOut()
  3. })
  4. /****/
  5. $(document).ready(function(){
  6. var whei=$(window).width()
  7. $("html").css({fontSize:whei/20})
  8. $(window).resize(function(){
  9. var whei=$(window).width()
  10. $("html").css({fontSize:whei/20})
  11. });
  12. });
  13. $(window).load(function(){$(".loading").fadeOut()})