css animation动画 引用动画: 1animation:动画名称 动画时间 运动曲线 何时开始 播放次数 是否反方向; 定义动画: 1234567891011 @keyframs 动画名称 { 0% { } 50%{ } 100%{ }} 例如: 1234567891011121314151617181920212223242526272829303132333435363738<!DOCTYPE html><html><head><meta charset="utf-8"><style> #myDIV{ width:300px; height:200px; background:red; animation:mymove 3s infinite;}@keyframes mymove { /* from {background-color:red;} to {background-color:blue;} */ 0%{ background-color:red; } 50%{ background-color:blue; } 100%{ background-color:red; } }</style></head><body><p>背景颜色逐渐地从红色变化到蓝色:<p><div id="myDIV"></div></body></html> 效果: 运动曲线:播放次数: 是否反方向: css #css css animation动画 https://github.com/chergn/chergn.github.io/510ca3318b00/ 作者 全易 发布于 2024年3月28日 许可协议 css 选中页面文本改变背景色和字颜色 上一篇 css 文本两端对齐,文字分散排列 下一篇