-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/sschmaus/sschmaus.github.io
- Loading branch information
Showing
34 changed files
with
10,254 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"> | ||
<meta name="generator" content="PTGui" /> | ||
<meta name="viewport" content="width=800,user-scalable=false" /> | ||
<title></title> | ||
|
||
<!-- ------------- style sheet: ------------ --> | ||
<style type="text/css"> | ||
|
||
html, body{ | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
font-family: Verdana, Arial, Helvetica, Sans-Serif; | ||
font-size: 8pt; | ||
margin: 0px; | ||
} | ||
|
||
h1 { | ||
font-size: 12pt; | ||
display: inline; | ||
} | ||
|
||
body, td { | ||
font-family: Verdana, Arial, Helvetica, Sans-Serif; | ||
font-size: 10pt; | ||
} | ||
|
||
#maintable { | ||
height:100%; | ||
width: 100%; | ||
padding-left: 20px; | ||
padding-right: 20px; | ||
} | ||
|
||
#toptd { | ||
text-align: center; | ||
padding: 10px 20px 10px 20px; | ||
} | ||
#middletd { | ||
height:100%; | ||
width: 100%; | ||
text-align: center; | ||
} | ||
#bottomtd { | ||
text-align: center; | ||
padding: 10px 25px 15px 25px | ||
} | ||
|
||
#mypanoviewer { | ||
height:100%; | ||
width: 100%; | ||
-webkit-box-shadow: 5px 5px 10px rgb(180,180,180); | ||
-moz-box-shadow: 5px 5px 10px rgb(180,180,180); | ||
box-shadow: 5px 5px 10px rgb(180,180,180); | ||
} | ||
|
||
#notice, | ||
#notice A:link, | ||
#notice A:visited, | ||
#notice A:active, | ||
#notice A:hover | ||
{ | ||
font-size: 7pt; | ||
color: rgb(160,160,160); | ||
text-align: right; | ||
padding-top: 5px; | ||
text-decoration: none; | ||
} | ||
|
||
#notice A:hover | ||
{ | ||
text-decoration: underline; | ||
} | ||
</style> | ||
|
||
<!--[if lte IE 8]> | ||
<style type="text/css"> | ||
/* Internet Explorer cannot fill a table row up to the remaining height; scrollbars will appear | ||
therefore set the middle row to only 70% : | ||
*/ | ||
#middletd { | ||
height:70%; | ||
} | ||
</style> | ||
<![endif]--> | ||
|
||
<!-- ------------- code to embed the panorama viewer: ------------ --> | ||
<script type="text/javascript" src="PTGuiViewer.js"></script> | ||
<script type="text/javascript"> | ||
//<![CDATA[ | ||
|
||
// create a new viewer object: | ||
var viewer=new PTGuiViewer(); | ||
|
||
// set parameters for the viewer: | ||
viewer.setVars({ | ||
pano: "Zweiseenblick1_", | ||
format: "14faces", | ||
pan: -40, | ||
minpan: -180, | ||
maxpan: 180, | ||
tilt:0, | ||
mintilt: -90, | ||
maxtilt: 90, | ||
fov: 100, | ||
minfov: 10, | ||
maxfov: 120, | ||
autorotatespeed: 1, | ||
autorotatedelay: 10, | ||
maxiosdimension: 756, | ||
showfullscreenbutton_html: 1, | ||
enablegyroscope: 0, | ||
mousemode: "drag" | ||
}); | ||
|
||
// and embed the viewer | ||
// The remainder of this HTML document should contain an element with the id mentioned here | ||
// (e.g. <div id="..."> ) | ||
// The viewer will be embedded as a child of that element | ||
|
||
viewer.embed("mypanoviewer"); | ||
|
||
//]]> | ||
</script> | ||
<!-- ------------- that's all! ------------ --> | ||
</head> | ||
|
||
<body> | ||
<div id="mypanoviewer"></div> | ||
</body> | ||
</html> |
Oops, something went wrong.