How to apply css conversion on iOS without using -webkit-transform?

On iOS (iPad / iPhone), I would like to apply some css (rotate / zoom) conversion for html elements. When using -webkit-transform there are some problems. (See iframe being cut out when in a div on a mobile safari .)

I was wondering if there is another option for applying transforms (possibly without hardware acceleration) on iOS without using -webkit-transform .

+4
source share
1 answer

The only real way to do these conversions is with the -webkit-transform tag. In addition, you can create images / elements manually and use .PNG files to maintain transparency.

+1
source

Source: https://habr.com/ru/post/1399008/


All Articles