如何在FireFox移动应用程序中创建启动画面

时间:2013-07-11 06:45:10

标签: firefox jquery-mobile firefox-os

我想为我的firefox操作系统创建启动画面,我该怎么办呢。任何人都知道怎么做

1 个答案:

答案 0 :(得分:1)

创建两个页面并在一段时间后调用转换,例如

    <div data-role="page" id="splash"> 
        <div data-role="content">  
            <img src="images/splash.png" alt="startup image" style="width: 100%; height: 100%" />
        </div>
    </div>


    <div data-role="page" id="home"> 
        <div data-role="header" data-backbtn="false">
            <h1>New page!!</h1>
        </div>
        <div data-role="content">
   New content!<br/>
   Test!!
        </div>
    </div>

然后使用此脚本更改页面

  $('#splash').on('pageshow', function(){
       var hideSplash = function() {
           $.mobile.changePage($("#home"));
       };
      setTimeout(hideSplash, 2000);
  });