CSS animation in Firefox not work

后端 未结 4 1574
-上瘾入骨i
-上瘾入骨i 2021-01-13 01:19

Hello i create animation for my box and all work in chrome. But in firefox dont work. I try to use -moz- but again nothing.

CSS code for animation what i us

4条回答
  •  孤城傲影
    2021-01-13 01:22

    Each vendor has it's own implementation. Webkit refers to the layout engine that Apple's Safari browser and Google Chrome are powered by. Internet Explorer also has it's own vendor implementation. Here are all of the variations:

    .transformed {
        -webkit-transform: rotate(15deg) scale(1.25, 0.5);
        -moz-transform: rotate(15deg) scale(1.25, 0.5);
        -ms-transform: rotate(15deg) scale(1.25, 0.5);
        transform: rotate(15deg) scale(1.25, 0.5);
    }
    

提交回复
热议问题