Is there polyfill for css transform property in IE8

前端 未结 1 1065
走了就别回头了
走了就别回头了 2020-12-30 14:32

I have the following mixin for cross-browser transform:

.transform (...) {
    -webkit-transform: @arguments; /* Chrome, Opera 15+, Safari 3.1+ */
       -mo         


        
相关标签:
1条回答
  • 2020-12-30 15:10

    There are a few you can use, the ones suggested from modenizer are:

    css sandpaper and transformie.

    I'd argue though, that adding pollyfills to older browser like ie8 damages the performance of an already past it browser and lowers the user experience. Also, if you are adding pollyfills to mobile browsers you are adding to the loading times which in a 3g connection might put users off.

    0 讨论(0)
提交回复
热议问题