Показать сообщение отдельно
  #4 (permalink)  
Старый 23.07.2014, 20:58
Аватар для MallSerg
Профессор
Отправить личное сообщение для MallSerg Посмотреть профиль Найти все сообщения от MallSerg
 
Регистрация: 07.03.2011
Сообщений: 1,138

<!Doctype html>
<html>
<head>
	<meta charset="utf-8">
	<title>Бегущая строка::</title>
</head>
<body>
	<form name="form_1">
		<input type="button"  name="button_1" value="Stop Title">
		<input type="button"  name="button_2" value="Star Title">
	</form>
</body>	
	<script>
		ot = document.title;
		document.form_1.button_1.onclick = function()
		{
			clearTimeout(orgn_ttl);
			document.title = ot;
		}
		title = document.form_1.button_2.onclick = function()
		{
				var s = document.title;
				document.title = s.substr(1) + s.substr(0,1);
				orgn_ttl = setTimeout ( title, 132 ) ;
		};
		title();
	</script>
</html>
Ответить с цитированием