• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

JavaScript mehrere texte anzeigen

Status
Für weitere Antworten geschlossen.

snake.logan

Neues Mitglied
Hallo,
ich möchte per JavaScript folgende Texte anzeigen lassen:

1. Verbindung zum Server wird aufgebaut...
2. Server antwortet...
3. Empfange Dateien vom Server...
4. Lade Grafiken...
5. Lade Texte...
6. Lade Anti Virus Programm...
7. Überprüfe auf Viruse...
8. Beende Viren Check, kein Virus vorhanden...
9. Lade restlichen inhalt, lade Seitenaufbau, lade links...
10. Laden ok... Sie werden weitergeleitet...

Danke im voraus!
 
Code:
<script type="javascript">
document.write("Verbindung zum Server wird aufgebaut...\n");
document.write("Der Server antwortet...\n");
document.write("Empfange Dateien vom Server...\n");
document.write("Lade Grafiken...\n");
document.write("Lade Texte...\n");
document.write("Lade Anti Virus Programm...\n");
document.write("Überprüfe auf Viruse...\n"); // viren ;)
document.write("Beende Viren Check, kein Virus vorhanden...\n");
document.write("Lade restlichen inhalt, lade Seitenaufbau, lade links...\n");
document.write("Laden ok... Sie werden weitergeleitet...\n");
</script>

lol .. was is daran jetzt schwer? ich glaub das hättest du auch selber hinbekommen
 
achso...du möchtest also dem user vortäuschen, die seite wäre toll o.O
;)


//EDIT:
versuchs mal damit:
Code:
<script type="javascript">
document.write("Verbindung zum Server wird aufgebaut...\n",200);
document.write("Der Server antwortet...\n",2000);
document.write("Empfange Dateien vom Server...\n",2000);
document.write("Lade Grafiken...\n",2000);
document.write("Lade Texte...\n",2000);
document.write("Lade Anti Virus Programm...\n",2000);
document.write("Überprüfe auf Viruse...\n",2000); // viren ;)
document.write("Beende Viren Check, kein Virus vorhanden...\n",2000);
document.write("Lade restlichen inhalt, lade Seitenaufbau, lade links...\n",2000);
document.write("Laden ok... Sie werden weitergeleitet...\n",2000);
</script>
 
Es wird kein Fehler angezeigt. Hier mal die ganze seite:
Code:
<html>

<head>
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="refresh" content="20; URL=<?php echo($url); ?>">
<style>
#demo
{
	background:#EBEADB;
	border:1px solid #CBC7B8;
	padding:10px;
	margin:10px 0px;
}
body
{
	font-family:verdana,arial,helvetica;
	font-size:80%;
	margin:20px;
	color:#000;
	background:#FFF;	
}
a, a:visited
{
	color:darkblue;
	text-decoration:none;
}
a:hover
{
	color:maroon;
	text-decoration:underline;
}
.error
{
	color:maroon;
}
.domaintaken
{
	color:maroon;
}
.domainavailable
{
	color:green;
}
#whoistable, input, select
{
	font-size:0.85em;
	font-family:verdana,arial,helvetica;
}
#whoistable
{
	border-bottom:1px solid #D4D0C8;
}
#whoistable th
{
	text-align:left;
}
#whoistable a, #whoistable a:visited
{
	color:#000;
	text-decoration:none;
}
#whoistable a:hover
{
	color:#999;
	text-decoration:underline;
}
h1
{
	font-family:arial,helvetica,sans-serif;
	font-size:1.8em;
	color:#7C765A;	
}
h2
{
	font-family:arial,helvetica,sans-serif;
	font-size:1.6em;
	color:#AEA991;	
}
.whoisform
{
	display:inline;	
}
#whoiswait
{

	text-align: center;
	position: absolute;
	top: 50%;
	width: 100%;
	overflow: visible;
	visibility: visible;
	display: block;
}

#whoiswait .outer
{
	margin-left: -200px;
	position: absolute;
	top: -60px;
	left: 50%;
	visibility: visible;
	width:400px;
}

#whoiswait .inner
{
	background-color:#FCFAF6;
	padding:30px;
	line-height:30px;
	border:1px solid #D4D0C8;
}

#whoisdetails
{
	font-family:verdana,arial,helvetica,sans-serif;;
	font-size:0.85em;
	padding:20px;
	border:1px solid #D4D0C8;
	background-color:#FCFAF6;
}
.linkbutton
{
	font-size:1.0em;
	width:80px;
}

.whoisrow1, .whoisrow1available
{
	background:#FCFAF6;
	border-top:1px solid #D4D0C8;
}
.whoisrow2, .whoisrow2available
{
	background:#FFF;
	border-top:1px solid #D4D0C8;
}

.whoisrow1:hover, .whoisrow2:hover
{
	background:#DDEEFF;
}
#verhuman
{
	text-align:center;
	border:1px solid #D4D0C8;
	background:#FCFAF6;
	padding:20px;
}
.verhuman
{
	font-size:2.2em;
}
.verhumanimg
{
	border:1px solid #000;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="refresh" content="20; URL=<?php echo($url); ?>">
<title>Bitte warten...</title>
<script type="javascript">
document.write("Verbindung zum Server wird aufgebaut...\n",200);
document.write("Der Server antwortet...\n",2000);
document.write("Empfange Dateien vom Server...\n",2000);
document.write("Lade Grafiken...\n",2000);
document.write("Lade Texte...\n",2000);
document.write("Lade Anti Virus Programm...\n",2000);
document.write("Überprüfe auf Viruse...\n",2000); // viren ;)
document.write("Beende Viren Check, kein Virus vorhanden...\n",2000);
document.write("Lade restlichen inhalt, lade Seitenaufbau, lade links...\n",2000);
document.write("Laden ok... Sie werden weitergeleitet...\n",2000);
</script>
</head>

<body>

<p><b>Bitte warten...</b></p>
<p>&nbsp;</p>

<hr>
<img src="images/progressbar2.gif">
</body>

</html>
 
hmmm....dann pack das zeug in nen array und lass es dann per intervall rausholen.

kannst du bissl javascript?
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben