Css3梳理篇——animation(动画)

1、 animation

name --动画名

duration --设置动画所需时间(先)

timing-function --动画类型(线性 linear)

delay --延迟时间(后)

iteration-count --动画的播放次数(无限循环 infinite / n --n次)

direction --方向(正向/反向reverse)

fill-mode; --动画之外的状态(forwards)


2、animation-play-state(一般单独使用)

动画的播放状态(播放/暂停)

播放--running

暂停--paused


3、代码

css 复制代码
.earth-con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: 2;
    /* TODO:待补充代码,添加动画 */
    /* 复合属性 */
    animation: orbit 36.5s linear infinite;
    /* 单独只用 */
    animation-play-state: running;
    animation-play-state: paused;
    
}
相关推荐
Python大数据分析@5 分钟前
通俗的讲,网络爬虫到底是什么?
前端·爬虫·网络爬虫
Lysun00126 分钟前
vue2的$el.querySelector在vue3中怎么写
前端·javascript·vue.js
jerry-891 小时前
Centos类型服务器等保测评整/etc/pam.d/system-auth
java·前端·github
小爬菜1 小时前
Django学习笔记(启动项目)-03
前端·笔记·python·学习·django
想要打 Acm 的小周同学呀1 小时前
前端Vue2项目使用md编辑器
前端·编辑器·vue2·markdown 语法
计算机-秋大田1 小时前
基于SSM的家庭记账本小程序设计与实现(LW+源码+讲解)
java·前端·后端·微信小程序·小程序·课程设计
海的预约2 小时前
VUE之路由Props、replace、编程式路由导航、重定向
前端·vue.js·智能路由器
西柚与蓝莓3 小时前
报错:{‘csrf_token‘: [‘The CSRF token is missing.‘]}
前端·flask
荆州克莱3 小时前
Golang的图形编程基础
spring boot·spring·spring cloud·css3·技术
德迅云安全-小钱4 小时前
跨站脚本攻击(XSS)原理及防护方案
前端·网络·xss