适配iPad、适配大屏电视机
适配iPadif ((navigator.userAgent.match(/Safari/i)) && (navigator.userAgent.match(/Window/i))) {// $('.login_box').css({//'width': '100rem'// })// alert('Window')}else{$('.login_box').css({'width
·
- 适配iPad
if ((navigator.userAgent.match(/Safari/i)) && (navigator.userAgent.match(/Window/i))) {
// $('.login_box').css({
// 'width': '100rem'
// })
// alert('Window')
}else{
$('.login_box').css({
'width':'60rem'
})
// alert('Safari')
}
- 适配大屏电视机
if (navigator.userAgent.match(/Android/i)) {
// document.getElementsByTagName('body')[0].style.backgroundColor = '#999';
$('.title').css({ "font-size": "2.5rem" })
}
更多推荐
已为社区贡献1条内容
所有评论(0)