Начало
Навигация
Ссылка Задержка изображения
Ваши посетители нажимают на ссылку, вы можете сделать браузер задержки столько секунд, сколько хотите, прежде чем они на самом деле направлены на эту страницу.
See the Cool Page
See the Link Page
Save Image
JavaScript Navigation: Ссылка Задержка изображения
<!-- TWO STEPS TO INSTALL LINK DELAY IMAGE: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin var page; var cool = new Image(); cool.src = "cool.gif"; var link = new Image(); link.src = "link.gif"; function redirect() { window.location = page; } function gotoPage(image, pic, time, url) { page = url; eval("document['" + image + "'].src=" + pic + ".src;"); timer = setTimeout('redirect()', time); } // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <center> <img name="image1" src="blank.gif" width=74 height=30><a href="javascript:gotoPage('image1', 'cool', '5000', 'http://www.yahoo.com')">See the Cool Page</a> <p> <img name="image2" src="blank.gif" width=74 height=30><a href="javascript:gotoPage('image2', 'link', '5000', 'http://www.yahoo.com')">See the Link Page</a> </center> <!-- Script Size: 1.22 KB -->