Hallo :),
ich bin hier neu und habe gleich eine Frage.
Ich bin gerade am erstellen meiner Website welche nun auch fast fertig ist.
Ich versuche mal mein Problem zu erklären.
Ich habe ein Bild auf der Page (Galerie.html ) welches ich verlinkt habe mit einer neuen Webseite (Dampfe.html)
Nun habe ich das Problem dass wenn ich den Link öffne.Wird ein neues Fenster aufgemacht welches maximiert ist also Ganzer Bildschirm.
Ich möchte aber das sich ein neue Fenster öffnet welches nur eine Bestimmte Größe hat in dem mein angehängter Code (Dampfe.html) ausgeführt wird.
Natürlich sollt das ganze nicht vom Browser gesperrt werden.
DA ich leider nicht so gut bin in Html Programierung benötige ich eure Hilfe.
Kann mir jemand Helfen ????????
Danke im voraus
Hier der Code:
<!DOCTYPE html>
<html manifest="Dampfe.manifest">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<script type="text/javascript">
// hide URL field on the iPhone/iPod touch
function hideUrlBar() {
}
</script>
<style type="text/css" title="Default">
body, div, h1, h2, h3, span, p {
font-family: Verdana,Arial,Helvetica,sans-serif;
color: #000000;
}
body {
font-size: 10pt;
background: #ffffff;
}
table,tr,td {
font-size: 10pt;
border-color: #777777;
background: #dddddd;
color: #000000;
border-style: solid;
border-width: 2px;
padding: 5px;
border-collapse: collapse;
}
h1 {
font-size: 18pt;
}
h2 {
font-size: 14pt;
}
.warning {
font-weight: bold;
}
</style>
</head>
<body>
<h1></h1>
<br>
<script type="text/javascript" src="object2vr_player.js">
</script>
<script type="text/javascript" src="skin.js">
</script>
<div id="container" style="width:552px;height:800px;">
This content requires HTML5 & Javascript or Adobe Flash Player Version 9 or higher.
</div>
<script type="text/javascript">
// create the object player with the container
obj=new object2vrPlayer("container");
// add the skin object
skin=new object2vrSkin(obj);
// load the configuration
str='<?xml version="1.0" encoding="UTF-8"?>';
str+='<vrobject>';
str+=' <input overlap="1" levelqueuebmp="5" preview="4" states="1" levelqueueraw="20" windowwidth="552" width="552" preload="1" rows="1" fileextension="jpg" windowheight="800" levelmembmp="200" imagepath="images_dampfe" levelmemraw="300" height="800" columns="37" levelbias="0.4000000059604645" leveltileurl="tiles/dampfe%c_l%r_%y_%x.jpg" leveltilesize="512">';
str+=' <level width="552" embed="0" height="800" preload="1" predecode="0"/>';
str+=' <level width="276" embed="0" height="400" preload="0" predecode="0"/>';
str+=' <level width="138" embed="0" height="200" preload="0" predecode="0"/>';
str+=' </input>';
str+=' <control simulatemass="1" lockedmouse="0" swapxy="0" lockedkeyboard="0" dblclickfullscreen="0" revx="0" invertwheel="0" revy="0" wrapx="1" wrapy="0" trapwheel="1" automovemode="1" lockedwheel="0" speedwheel="1" controller="1" sensitivity="6"/>';
str+=' <view>';
str+=' <start row="0" column="0" state="0"/>';
str+=' <zoom default="1" centerx="0" centery="0" min="1" max="2"/>';
str+=' <viewer imagescaling="1" backgroundcolor="0xffffff" background="1"/>';
str+=' </view>';
str+=' <autorotate speed="0.1" delay="5" start="0"/>';
str+=' <userdata title="" datetime="" description="" copyright="" author="" source="" comment="" info=""/>';
str+=' <qthotspots enabled="0" reuse="8">';
str+=' <label width="180" backgroundalpha="1" enabled="0" height="20" backgroundcolor="0xffffff" bordercolor="0x000000" border="1" textcolor="0x000000" background="1" borderalpha="1" borderradius="1" wordwrap="1" textalpha="1"/>';
str+=' </qthotspots>';
str+=' <hotspots>';
str+=' <label width="180" backgroundalpha="1" enabled="0" height="20" backgroundcolor="0xffffff" bordercolor="0x000000" border="1" textcolor="0x000000" background="1" borderalpha="1" borderradius="1" wordwrap="1" textalpha="1"/>';
str+=' <polystyle mode="0" backgroundalpha="0.2509803921568627" backgroundcolor="0x0000ff" bordercolor="0x0000ff" borderalpha="1"/>';
str+=' <hotspot title="" target="" skinid="" url="gehäuse_Akku.html" id="Akku" reuse="0">';
str+=' <location x="0.387681" y="0.45" row="0" column="27" state="0"/>';
str+=' <location x="0.603261" y="0.43625" row="0" column="9" state="0"/>';
str+=' </hotspot>';
str+=' </hotspots>';
str+='</vrobject>';
str+='';
obj.readConfigString(str);
// hide the URL bar on the iPhone
setTimeout(function() { hideUrlBar(); }, 10);
</script>
<noscript>
<p><b>Please enable Javascript!</b></p>
</noscript>
</body>
</html>