mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Import from DCARF SVN
This commit is contained in:
70
userdoc/user_interface/siframes.html
Normal file
70
userdoc/user_interface/siframes.html
Normal file
@@ -0,0 +1,70 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
||||
"http://www.w3.org/TR/html4/frameset.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta HTTP-EQUIV=CONTENT-TYPE CONTENT="text/html; charset=utf-8">
|
||||
<title>Slide 1</title>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
var nCurrentPage = 0;
|
||||
var nPageCount = 25;
|
||||
|
||||
function NavigateAbs( nPage )
|
||||
{
|
||||
frames["show"].location.href = "img" + nPage + ".html";
|
||||
frames["notes"].location.href = "note" + nPage + ".html";
|
||||
nCurrentPage = nPage;
|
||||
if(nCurrentPage==0)
|
||||
{
|
||||
frames["navbar1"].location.href = "navbar0.html";
|
||||
}
|
||||
else if(nCurrentPage==nPageCount-1)
|
||||
{
|
||||
frames["navbar1"].location.href = "navbar2.html";
|
||||
}
|
||||
else
|
||||
{
|
||||
frames["navbar1"].location.href = "navbar1.html";
|
||||
}
|
||||
}
|
||||
|
||||
function NavigateRel( nDelta )
|
||||
{
|
||||
var nPage = parseInt(nCurrentPage) + parseInt(nDelta);
|
||||
if( (nPage >= 0) && (nPage < nPageCount) )
|
||||
{
|
||||
NavigateAbs( nPage );
|
||||
}
|
||||
}
|
||||
|
||||
function ExpandOutline()
|
||||
{
|
||||
frames["navbar2"].location.href = "navbar4.html";
|
||||
frames["outline"].location.href = "outline1.html";
|
||||
}
|
||||
|
||||
function CollapseOutline()
|
||||
{
|
||||
frames["navbar2"].location.href = "navbar3.html";
|
||||
frames["outline"].location.href = "outline0.html";
|
||||
}
|
||||
|
||||
// -->
|
||||
</script>
|
||||
</head>
|
||||
<frameset cols="*,656">
|
||||
<frameset rows="42,*">
|
||||
<frame src="navbar3.html" name="navbar2" marginwidth="4" marginheight="4" scrolling="no">
|
||||
<frame src="outline0.html" name="outline">
|
||||
</frameset>
|
||||
<frameset rows="42,496,*">
|
||||
<frame src="navbar0.html" name="navbar1" marginwidth="4" marginheight="4" scrolling="no">
|
||||
<frame src="img0.html" name="show" marginwidth="4" marginheight="4">
|
||||
<frame src="note0.html" name="notes">
|
||||
</frameset>
|
||||
<noframes>
|
||||
<body>
|
||||
Unfortunately your browser does not support floating frames.
|
||||
</noframes>
|
||||
</frameset>
|
||||
</html>
|
||||
Reference in New Issue
Block a user