用 CSS 制作动画背景
使用 @keyframes 创建动画。要使用 CSS 实施背景动画,你可以尝试运行以下代码
示例
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 400px;
height: 300px;
animation: myanim 3s infinite;
}
@keyframes myanim {
30% {
background: green bottom right/50px 50px;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP