Hi,
In body.html the splash div contains the fullscreen div. That could be changed and see if it works then.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Basic Symbian Web Runtime Widget</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body{
width:100%;
height: 100%;
background-color:#f3f3d1;
margin: 0;
padding: 0;
}
#fsWrapper{
width: 100%;
overflow: hidden;
position: absolute;
left: 0;
top: 0;
margin: 0;
padding: 0;
}
#splash{
width:100%;
height:100%
}
#fullscreen{
display:none;
}
</style>
<script type="text/javascript">
function init(){
setTimeout(showFullScreenView, 2000);
if(widget.isrotationsupported) {
widget.setDisplayPortrait();
}
}
function showFullScreenView(){
document.getElementById('splash').style.display = "none";
document.getElementById('fullscreen').style.display = "block";
}
</script>
</head>
<body onload="init();">
<div id="fsWrapper">
<div id="splash">
<img id="splashimage" alt="splash" src="splash.png"/>
</div>
<div id="fullscreen">
Fullscreen
</div>
</div>
</body>
</html>
Br,
Ilkka