10 lines
122 B
HTML
10 lines
122 B
HTML
<!doctype html>
|
|
<style>
|
|
div {
|
|
animation: t 1s;
|
|
}
|
|
@keyframes t {
|
|
to { stroke-dasharray: none; }
|
|
}
|
|
</style>
|
|
<div></div>
|