recherche

Maison  >  Questions et réponses  >  le corps du texte

css - jq有无现成函数改变rotateX/Y的deg

如题,以下是我的css

.stage{
    width:128px;
    height:128px;
    border:1px solid black;
    margin: 150px auto;
    backface-visibility:hidden;
    transform-style:preserve-3d;
    perspective:300px;
}

.box1{
    position: absolute;
    opacity: 0.7;
    width: 128px;
    height: 80px;
    margin-top:30px;
    background: red;
    transform:rotateY(320deg) translateZ(197px);

}

如果我想改变box1中的rotateY角度,只能通过matrix设置吗,可以通过jq直接设置吗?

黄舟黄舟2779 Il y a quelques jours543

répondre à tous(1)je répondrai

  • 高洛峰

    高洛峰2017-04-17 11:44:53

    $('.box1').css({'transform' : 'rotateY(180deg)'});

    répondre
    0
  • Annulerrépondre