什么是优雅降级和渐进增强?

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;
}


本文链接:https://my.lmcjl.com/post/20927.html

展开阅读全文

4 评论

留下您的评论.