13 lines
149 B
HTML
13 lines
149 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
@keyframes x {
|
|
0% {
|
|
list-style-type: c;
|
|
}
|
|
}
|
|
div {
|
|
animation-name: x;
|
|
list-style-type: t;
|
|
}
|
|
</style>
|
|
<div></div>
|