Bildschirm auflösung anpassen
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
-
gibt es irgend ein skript mit dem man erst die bildschirmaufl?sung des benutzers erkennt und dann eine bestimmte seite aufgerufen wird, also:
wenn die aufl?sung 1024x786 ist dann wird die datei index1024.html ge?ffnet, bei 800x600 index800.html, aber bei 1600x1200 wird die datei index1024.html ge?ffnet. -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Ja es geht aber nur mit Java script
Also hier wirst du wenn deine h?he 1024 pixel betr?gt weiter zu index1.htm geleitet. Sonst zu index3.htm das kannst du erweitern und das nat?rlich auch mit hight statt width. das ist dir klar oder?
<script type="text/javascript">
if (screen.width == 1024) {
window.location.href = "index1.htm";
} else {
window.location.href = "index2.htm";
}
</script> -
geht das hier??
<script type="text/javascript">
if (screen.width == 1024),(screen.high == 786) {
window.location.href = "index1024.html";
} if (screen.width == 1280),(screen.high == 1024) {
window.location.href = "index1280.html";
else {
window.location.href = "index800.htm";
}
</script>
Beitrag ge?ndert am 26.10.2005 20:11 von sneerfire -
sneerfire schrieb:
geht das hier??
<script type='text/javascript'>
if (screen.width == 1024),(screen.high == 786) {
window.location.href = 'index1024.html';
} if (screen.width == 1280),(screen.high == 1024) {
window.location.href = 'index1280.html';
else {
window.location.href = 'index800.htm';
}
</script>
Nein, das Komma ist da falsch. Allerdings reicht es auch aus, wenn du nur wie Breite des Bildschirms ?berpr?fst. Wozu noch die H?he ?berpr?fen? Falls du es aber unbedingt brauchst:
<script type='text/javascript'>
if ((screen.width == 1024) && (screen.high == 786))
{
window.location.href = 'index1024.html';
}
else if ((screen.width == 1280) && (screen.high == 1024))
{
window.location.href = 'index1280.html';
}
else
{
window.location.href = 'index800.htm';
}
</script>
Kann das mal wer nach JavaScript & HTML verschieben? Das geh?rt nicht nach PHP.
p.s.: Ich denke, mit VBScript m?sste das auch gehen, hab aber keinen Plan davon. -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage