|
热门文章 |
|
|
|
相关文章 |
|
没有相关文章 |
|
|
按分辨率导航相应页面 |
来源:源码爱好者 更新时间:2012/1/7 19:10:56 阅读次数: 我要投稿 |
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>分辨率导航页面</title> <body> <script LANGUAGE="JavaScript"> <!-- Begin function redirectPage() { var url640x480 = "http://www.163.com/"; var url800x600 = "http://www.codefans.net/"; var url1024x768 = "http://www.baidu.com/"; 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; } // End --> </script> <form> <input type=button value="进入符合分辨率的页面" onClick="redirectPage()"> </form> </body> </html> |
特效说明: |
这是一个比较实用的JS小特效,按分辨率导航相应页面,当用户访问时,判断用户电脑的分辨率,并导航至对应的分辨率页面上,以获得较高的用户体验。 |
|
上一篇文章: 分享一款自制的网页滚动条样式下一篇文章: jQuery 内容左右切换效果 |
|
|