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?
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 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
Could you please tell us what exactly you need to implement?
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.
Hi Francisco,
Please take a look at here:
https://getsatisfaction.com/apperyio/...
You can set any URL for the image.
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
Hello! Please give mobilecontainer1 any other name
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 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...
Wow !!
Thanks a lot. It is very simple and effective.