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