How to apply multiple transforms in CSS?

前端 未结 7 1429
死守一世寂寞
死守一世寂寞 2020-11-22 06:09

Using CSS, how can I apply more than one transform?

Example: In the following, only the translation is applied, not the rotation.

li:nth         


        
相关标签:
7条回答
  • 2020-11-22 06:59

    I'm adding this answer not because it's likely to be helpful but just because it's true.

    In addition to using the existing answers explaining how to make more than one translation by chaining them, you can also construct the 4x4 matrix yourself

    I grabbed the following image from some random site I found while googling which shows rotational matrices:

    Rotation around x axis: Rotation around x axis
    Rotation around y axis: Rotation around y axis
    Rotation around z axis: Rotation around z axis

    I couldn't find a good example of translation, so assuming I remember/understand it right, translation:

    [1 0 0 0]
    [0 1 0 0]
    [0 0 1 0]
    [x y z 1]
    

    See more at the Wikipedia article on transformation as well as the Pragamatic CSS3 tutorial which explains it rather well. Another guide I found which explains arbitrary rotation matrices is Egon Rath's notes on matrices

    Matrix multiplication works between these 4x4 matrices of course, so to perform a rotation followed by a translation, you make the appropriate rotation matrix and multiply it by the translation matrix.

    This can give you a bit more freedom to get it just right, and will also make it pretty much completely impossible for anyone to understand what it's doing, including you in five minutes.

    But, you know, it works.

    Edit: I just realized that I missed mentioning probably the most important and practical use of this, which is to incrementally create complex 3D transformations via JavaScript, where things will make a bit more sense.

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