how to add full screen welcome image on a web app using jquerymobile

前端 未结 3 1682
野趣味
野趣味 2021-01-31 11:50

I think it\'s there in jQTouch but how do I add a full screen welcome image for my iPhone web app developed using jQueryMobile?

The app is a full screen web app and it i

3条回答
  •  情深已故
    2021-01-31 12:45

    Thanks for the help. This didn't work with the current stable release of Jquery Mobile, since it doesn't yet support 1.7. I managed to combine it another solution on the matter and came up with:

    $ (function(){
    setTimeout(function(){
        $.mobile.changePage("#home", "fade");
    }, 3000);
    });
    

    Thanks!

提交回复
热议问题