热门

最新

红包

立Flag

投票

同城

我的

发布
qq_44105201
菜鸟6666号
4 年前
trueqq_44105201

.dv {
background-color: pink;
height: 160px;
width: 100px;
border-radius: 10px;
animation-name: identifier;
//动画时长
animation-duration: 1.2s;
//动画速度曲线 ease 默认,linear,ease-in,ease-out,ease-in-out,cubic-bezier(n,n,n,n) n:0-1
animation-timing-function: ease-in;
//播放次数 n,infinite
animation-iteration-count: infinite;
//是否反向播放 normal,alternate
animation-direction: alternate;
}

@keyframes identifier{
0% {
height: 160px;
}

100% {
height: 0px;
}
}

CSDN App 扫码分享
分享
评论
2
打赏
  • 复制链接
  • 举报
下一条:
这个事情需要多长时间去做,有多难做,对标的是谁
立即登录