21 lines
206 B
HTML
21 lines
206 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
@keyframes c {
|
|
50% {
|
|
stroke-dasharray: context-value;
|
|
}
|
|
}
|
|
|
|
div {
|
|
animation-name: c;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|