前端项目

2016-02-17  本文已影响22人  周筱鲁
#slides {
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: height 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    overflow: hidden;
    height: calc(100vh - 5px);
}

发现在IE11中无法得到过度效果。

原因:IE中的BUG,无法对calc的属性作用效果

解决办法:只能提前设置

上一篇下一篇

猜你喜欢

热点阅读