Background Image Fails to Load
I've tested it and it's working.
Try to delete and add the event again (StartScreen, Load Event, Run JavaScript Action.).
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I've tested it and it's working.
Try to delete and add the event again (StartScreen, Load Event, Run JavaScript Action.).
No still not working, I guess I will play around with it. Thank you
Hi Darius.
"mobilecontainer1" - is a reserved name for all mobilecontainers in all pages. Real name of mobilecontainer on this particular page may differs from "mobilecontainer1".
If you want to change background on this particular page on "Page load" or "Page show" event, try to rename mobilecontainer on this page from "mobilecontainer1" to some other name. For example "mobContainer". And use this code:
codeAppery('mobContainer').css('background-image','url("http://blastdfw.com/blast/blastbck.jpg")');
/code
Or if you don't need to change backround dynamically you can set class name for mobilecontainer (for example niceBackground) and add css with code:
code.niceBackground{
background-image: url("http://blastdfw.com/blast/blastbck.jpg");
}/code