css3的方法(如果只用在手机端,足够了)
display: -webkit-flex;align-items: center;//子元素垂直居中justify-content:center;//子元素水平居中
兼容ie8的方法
获取屏幕宽高
function viewport() { var e = window, a = 'inner'; if (!('innerWidth' in window )) { a = 'client'; e = document.documentElement || document.body; } return { width : e[ a+'Width' ] , height : e[ a+'Height' ] };}