文本出现延迟

Text appearing with delay

我正在尝试找到如何在页面加载 10 秒后让文本出现在页面上的解决方案?示例文本..

I didn't do anything, because I think it's about javascript here...

示例:像这样:http://postimg.org/image/duogy83zd/

试试下面的代码,这就是你需要的:

<html>

<head>
<script>
window.onload = function(){
  var theDelay = 10;
  var timer = setTimeout("showText()",theDelay*1000)
}
function showText(){
  document.getElementById("delayedText").style.visibility = "visible";
}
</script>
</head>
<body>
<div id="delayedText" style="visibility:hidden">
I didn't do anything, because I think it's about javascript here...
</div>
</body>
</html>