|
<!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Walls</title> <link href="../../css/stylesheet.css" rel="stylesheet" type="text/css" /> <script language="JavaScript1.1"> var playing = 0 var timeoutID = 0 var slideShowNextLink = "../../pages/image/imagepage2.html" var slideShowDelay = 3000
// Browser detection var agt = navigator.userAgent.toLowerCase(); var is_ie = (agt.indexOf("msie") != -1);
if (location.href.indexOf("?") != -1) { urlQuery = location.href.split("?") playing = parseInt(urlQuery[1]) } if (playing == 1) { startSlideShow() } function slideShow() { window.location.href = slideShowNextLink + "?" + "1" timeoutID = setInterval("slideShow()", slideShowDelay); }
function startSlideShow() { clearTimeout(timeoutID) timeoutID = setInterval("slideShow()", slideShowDelay); }
function stopSlideShow() { clearTimeout(timeoutID) if (is_ie) { fakeTimeoutID = setInterval("redirectDelay()", 0); } else { redirectDelay(); } } function redirectDelay() { tempArray = window.location.href.split("?") window.location.href = tempArray[0] } _/script_ </head> <body> <div id="wrapper"> <div id="logohead"> <img src="../../images/logo/headerlogo.gif" /> </div> <div id="pagehead"> <div class="left">xxxxx.com » Eston4ik</div> <div class="right"> <a href="mailto:eston4ik@gmail.com">eston4ik@gmail.com</a> </div> <div class="clearer"> </div> </div> <div class="imagenav"> <div class="left"> <strong>Slideshow: </strong> <a href="javascript:void(0)" name="slideShowControl" onclick="startSlideShow()">Start</a> | <a href="javascript:void(0)" name="slideShowControl" onclick="stopSlideShow()">Stop</a> </div> <div class="right"> « Previous | <a href="../../index.html">Home</a> | <a href="../../pages/image/imagepage2.html">Next</a> » </div> <div class="clearer"> </div> </div> <div id="mainimage"> <a href="../../images/fullsize/wallpaper1.JPG"> <img src="../../images/image/wallpaper1.JPG" width="397" height="298" /> </a> </div>.........итд. вот видно только logo.gif когда захожу а другие нет..
|