文字出现延迟

Text appearing with delay

本文关键字:延迟 文字      更新时间:2023-09-26

我试图找到解决方案,我怎么能使一个文本出现在页面加载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>