移动适配


@media screen and (max-height: 1000px){
    .scale{
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        -webkit-transform-origin:center top;
    }
}

@media screen and (max-height: 900px){
    .scale{
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        -webkit-transform-origin:center top;
    }
}

posted @ 2016-03-11 15:54  duowen  阅读(98)  评论(0编辑  收藏  举报