标签:
//页面宽度固定640
(function() {
var width = 640;
if (/Android/.test(navigator.userAgent)) {
var scale = window.screen.width / width;
document.write(‘<meta name="viewport" content="width=‘ + width + ‘, minimum-scale=‘ + scale + ‘, maximum-scale=‘ + scale + ‘, target-densitydpi=device-dpi">‘);
} else {
document.write(‘<meta name="viewport" content="width=‘ + width + ‘, user-scalable=no, target-densitydpi=device-dpi">‘);
}
})();
用来固定页面宽度,方便适配各屏幕设备
//随机颜色
function randomColor() {
return ‘#‘ + (‘00000‘ + (Math.random() * 0x1000000 << 0).toString(16)).slice(-6);
}
标签:
原文地址:http://www.cnblogs.com/JoeQian/p/4704136.html