命令行HTML效果

时间:2013-01-16 17:44:11

标签: http-status-code-404

我正在寻找HTML命令行效果。

基本上,我正在创建一个404页面,我想放入一个假的命令行,每隔一两秒显示一个新文本。这是可能的,还是我在浪费时间?

我可能需要使用Flash执行此操作,但我不想这样做。

有什么想法吗?

FS

1 个答案:

答案 0 :(得分:2)

Javascript会很简单,就像:

<html>
<head>
<script type="text/javascript">
<!--
function refreshparentclose()
{
 window.opener.location.reload();
 window.close();
}

-->
</script>

</head>
<body onload="setTimeout('refreshparentclose();', 3000);" >
<br>
Boo!


</body>

将“window.close”替换为生成“命令”以显示。 Flash在这里太过分了。