mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
23 lines
404 B
HTML
23 lines
404 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
body {
|
|
background-color: white;
|
|
color: black;
|
|
animation: change-background-color 3s infinite alternate;
|
|
}
|
|
|
|
@keyframes change-background-color {
|
|
to {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Animated body element</h1>
|
|
</body>
|
|
</html>
|