广汇汽车服务集团股份公司官方网站
广汇汽车服务集团股份公司是一家专业从事汽车销售、维修、保养等服务的综合性企业。为了适应不同设备的浏览需求,我们为移动端用户提供了专门的WAP网站(http://wap.chinagrandauto.com/)。在您访问本网站时,如果设备是手机或平板电脑,系统会自动跳转到WAP网站进行展示。
var ua = navigator.userAgent;
var ipad = ua.match(/(iPad).*OS\s([d_]+)/),
isIphone =!ipad && ua.match(/(iPhone\sOS)\s([\d_]+)/),
isAndroid = ua.match(/(Android)\s+([\d.]+)/),
isMobile = isIphone || isAndroid; //判断 if(isMobile){ window.location.href="http://wap.chinagrandauto.com/"; }
在这段代码中,首先通过navigator.userAgent
获取用户设备的浏览器信息,然后通过正则表达式判断设备类型,包括iPad、iPhone和Android等。如果是移动设备,则将页面重定向到WAP网站(http://wap.chinagrandauto.com/)。
网站还提供了一个下拉菜单的功能,当用户在移动设备上点击某个菜单项时,下拉菜单会显示出来。这个功能是通过jQuery实现的,具体代码如下:
function dropMenu(obj){ $(obj).each(function(){ var theSpan = $(this); var theMenu = theSpan.find(".submenu"); var tarHeight = theMenu.height(); theMenu.css({height:0,opacity:0}); theSpan.hover( function() { theMenu.animate({height:tarHeight,opacity:1},"fast"); }, function() { theMenu.animate({height:0,opacity:0},"fast"); }); }); };
当用户鼠标悬停在某个菜单项上时,下拉菜单会以动画的形式显示出来;当用户鼠标离开时,下拉菜单会以动画的形式隐藏起来。