是否可以通过动画来进行css变换?
我有这个tarnsform
transform: translate(-10%, 0px); left: 0px;
可以正常滑动左侧,右侧滚动
但我想在不透明度0到1
中添加一些淡入淡出动画答案 0 :(得分:0)
如果我理解正确,你希望翻译和不透明度都包含在动画中使用它:
div {
width: 100px;
height: 100px;
background: red;
animation-name: fromleft;
animation-delay: 0s;
animation-duration: 0.8s;
animation-fill-mode: backwards;
animation-timing-function: ease-out;
}
@keyframes fromleft {
0% {
transform: translateX(-100px);
opacity: 0;
}
100% {
transform: translateX(0px);
opacity: 1;
}
}

<div>
</div>
&#13;