Cita:
Iniciado por cyber1977 Hola. Necesito el codigo para que mi website se vea bien en cualquier tipo de monitor. esta hecha solo en html. Gracias.
Hola, cyber1977
Quizás esto te sirva, debes de colocar el código javascript entre las etiquetas <head></head>
Código PHP:
<script LANGUAGE="JavaScript">
function redireccionar() {
var url640x480 = "http://www.tusitioweb.com/640x480";
var url800x600 = "http://www.tusitioweb.com/800x600";
var url1024x768 = "http://www.tusitioweb.com/1024x768";
if ((screen.width == 640) && (screen.height == 480))
window.location.href= url640x480;
else if ((screen.width == 800) && (screen.height == 600))
window.location.href= url800x600;
else if ((screen.width == 1024) && (screen.height == 768))
window.location.href= url1024x768;
else window.location.href= url640x480;
}
</script>
En el javascript podrás modificar las resoluciones que queráis que soporte. Y luego modificamos la etiqueta <body> dejándola de esta manera:
Código PHP:
<body onLoad="redireccionar()">
Espero que te haya servido, y aquí estamos de vuestra parte dispuesto a ayudar :) Saludos.