|
Ekran Çözünürlüğüne göre yönlendirme
Kodları <head>..</head> arasına yazınız
<script language="javascript"> //Ali Almossawi's CyberiaPC.com //www.cyberiapc.com var s1024x768page = "htmlmain1024.htm"; var s800x600page="htmlmain1.htm"; var s640x480page="htmlmain640.htm"; var pagetype; if ((screen.height == 768) && (screen.width == 1024)) { pagetype = 1; }
else if ((screen.height == 600) && (screen.width ==800)) { pagetype = 2; }
else if ((screen.height == 480) && (screen.width ==640)) { pagetype = 3; } else { pagetype = 1; }
if (pagetype ==1) {window.location.href =s1024x768page }
else if (pagetype ==2) { window.location.href = s800x600page } else if (pagetype ==3) { window.location.href = s640x480page } //-> </script>
|