我想为我的firefox操作系统创建启动画面,我该怎么办呢。任何人都知道怎么做
答案 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);
});