Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Animated background with CSS
Use the @keyframes to animate. To implement animation on background with CSS, you can try to run the following code
Example
<!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> Advertisements
