我想为我的 Firefox os 应用程序创建启动画面,我该怎么做。谁能知道怎么做
问问题
587 次
1 回答
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);
});
于 2013-07-11T07:35:48.347 回答