优雅降级 和 渐进增强

详情 http://www.sharedblog.cn/?post=28

1.渐进增强

    在刚开始,就针对低版本浏览器进行项目开发,然后在针对高版本浏览器进行交互效果的设置,简称渐进增强

.box{
    // 渐进增强写法
    -webkit-tanstion: all .5s;
    -moz-transtion: all .5s;
    -o-transition: all .5s;
    transiton: all .5s;
}

2.优雅降级

    在刚开始开发的时候就以高版本浏览器进行开发,开发完后在针对低版本浏览器或个版本浏览器之间做兼容

.box{
    // 优雅降级写法
    transiton: all .5s;
    -o-transition: all .5s;
    -moz-transtion: all .5s;
    -webkit-tanstion: all .5s;
}

猜你喜欢

转载自blog.csdn.net/tianpeng1996/article/details/84063270
今日推荐