Page 1 of 1

Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Thu Oct 03, 2013 9:58 am
by Francisco Narro

I want to make a splash screen that show some html from internet. Is there anything similar to Frame in appery.io?

If not, How can i make it?


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Thu Oct 03, 2013 10:45 am
by Kateryna Grynko

Hi Francisco,

There is a splash screen image in Appery.io.
To use custom html code you would need Panel component with type=html.
You can find our tutorials here: http://docs.appery.io/tutorials


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Thu Oct 03, 2013 10:46 am
by Kateryna Grynko

Could you please tell us what exactly you need to implement?


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Thu Oct 03, 2013 1:13 pm
by Francisco Narro

I want to show a small webpage in the splash or simply a external URL of a picture.
I have read your tutorial but it doesn't work to me.

Splash screen


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Thu Oct 03, 2013 2:41 pm
by Kateryna Grynko

Hi Francisco,

Please take a look at here:
https://getsatisfaction.com/apperyio/...
You can set any URL for the image.


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Thu Oct 03, 2013 4:02 pm
by Francisco Narro

Hi Katya,
I am confused.

I have a page with anything inside.
I create an event into page Load, and I select "Run javascript"

In JavaScript I write
code
$('div[dsid="mobilecontainer1"]').css('background-image','url("http://www.sdcblog.com/wp-content/uploads/2011/06/italy.jpg")');
$('div[dsid="mobilecontainer1"]').css('background-size','cover');
$('div[dsid="mobilecontainer1"]').css('background-position','center');
$('div[dsid="mobilecontainer1"]').css('position', 'absolute');
$('div[dsid="mobilecontainer1"]').css('width', '100%');/code

I think I am doing something wrong


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Thu Oct 03, 2013 5:33 pm
by Maryna Brodina

Hello! Please give mobilecontainer1 any other name


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Fri Oct 04, 2013 6:35 am
by Francisco Narro

Thanks Marina, now it works ;-)

Now, the other thing in this post.
How can I show inside a page a little webpage from an external server?


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Fri Oct 04, 2013 7:21 am
by Kateryna Grynko

Hi Francisco,

You would need to create a Panel component with type=html and write there HTML code with "iframe" tag: http://www.w3schools.com/tags/tag_ifr...


Hi, I need to show a html page inside the app, like an splash page. ¿how can i do it?

Posted: Fri Oct 04, 2013 7:28 am
by Francisco Narro

Wow !!

Thanks a lot. It is very simple and effective.