48 lines
925 B
HTML
48 lines
925 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>过渡</title>
|
|
<style>
|
|
.box{
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: red;
|
|
transition: all 1s cubic-bezier(0.76, -0.49, 0, 1.99) 0s;
|
|
}
|
|
.box:hover {
|
|
width: 300px;
|
|
height: 300px;
|
|
}
|
|
|
|
@keyframes test {
|
|
from {
|
|
background-color: blue;
|
|
}
|
|
|
|
to {
|
|
background-color: red;
|
|
}
|
|
}
|
|
|
|
|
|
.box_2 {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: blue;
|
|
animation: test 3s ease 1s infinite alternate forwards;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="box"></div>
|
|
|
|
<div class="box_2 "></div>
|
|
|
|
|
|
</body>
|
|
</html> |