动画属性
div { width: 300px; height: 300px; background-color: aqua; animation-name: zhuan; /* 动画持续时间 */ animation-duration: 10s; /* 动画style */ animation-timing-function: ease-in; /* 延迟触发 */ animation-delay: 2s; /* 设置动画原路返回 */ animation-direction: alternate; /* 设置动画次数为无限次 */ animation-iteration-count: infinite; /* 设置动画不会返回 */ animation-fill-mode: forwards; } div:hover { /* 动画暂停 */ animation-play-state: paused; }css动画
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)