前段时间在了解boostrap的使用,在使用到他的模态框功能时很是喜欢这种简洁的设计模式,这段时间写完了一个完整的公司网站。这里贴出网址,还有不少细节作得很差,但会逐步完善。www.erhuoapp.com. 这里用到了对设备检测的js语句,针对手机设备会自动进行跳转到手机页面,手机页面就写得很糙了,但愿之后我能够在学习html5 的过程当中把他作得愈来愈完善。这里贴出一段检测设备的js代码。javascript
<script type="text/javascript">
<!--
//平台、设备和操做系统
var system = {
win: false,
mac: false,
xll: false,
ipad:false
};
//检测平台
var p = navigator.platform;
system.win = p.indexOf("Win") == 0;
system.mac = p.indexOf("Mac") == 0;
system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
system.ipad = (navigator.userAgent.match(/iPad/i) != null)?true:false;
if (system.win || system.mac || system.xll||system.ipad) {
} else {
window.location.href = "moblie.html";
}
--> html
但愿各位大神指导~html5