在这段代码中,当沿着左上角的点旋转时,条向下摆动了一点,旋转时多次看到这种情况,有时它会得到修复,但我不能发现差异。
@keyframes rightup{
100%{
transition:transform 1s linear;
transform-origin:top left;
transform:rotate(-50deg);
}
}
.box{
position:absolute;
height:10px;
width:150px;
background-color:black;
top:50%;
left:50%;
border-radius:5px;
animation-name:rightup;
animation-duration:5s;
}
<div class="box"></div>
想要这样的东西
.box{
position:absolute;
height:10px;
width:150px;
background-color:black;
top:50%;
left:50%;
border-radius:5px;
animation-name:rightup;
animation-duration:5s;
}
.box:hover{
transition:transform 1s linear;
transform-origin:top left;
transform:rotate(-50deg);
}
<div class="box"></div>
1条答案
按热度按时间gfttwv5a1#
在动画中,您不会从一开始就将变换原点设置为左上右,但在变换/变换示例中会这样做。
此外,一个次要的点,为这样一个细长的酒吧,但它作出了轻微的差异,你是旋转约顶部的酒吧,而不是(垂直)中心。
此代码段更改了以下两个方面: