Начало
Часы
Часы Заголовка окна
(Internet Explorer только) Показывает часы в заголовке окна окна браузера наверху экрана после названия страницы.
Смотрите на заголовок окна наверху окна браузера для демонстрационного примера часов заголовка окна.
JavaScript Clocks: Часы Заголовка окна
<!-- ONE STEP TO INSTALL TITLE BAR CLOCK: 1. Copy the coding into the HEAD of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin var clocktext, timeday; var pagetitle = document.title; function scroll() { today = new Date(); sec = today.getSeconds(); hr = today.getHours(); min = today.getMinutes(); // 12 Hour clock fix by Michael Mann (pres@manninc.com) if (hr < 12) { timeday = " AM"; } else { timeday = " PM"; } if (hr > 12) hr = hr - 12; if (hr <= 9) hr = "0" + hr; if (min <= 9) min = "0" + min; if (sec <= 9) sec = "0" + sec; var clocktext = " - " + hr + ":" + min + ":" + sec + timeday; clocktimer = setTimeout("scroll()", 1000); document.title = pagetitle + clocktext; } if (document.all) scroll(); // End --> </script> <!-- Script Size: 0.90 KB -->