blob: da3b976d88b882f4b4e77fb6c16b3db96ce0397e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<style>
@keyframes c {
50% {
stroke-dasharray: context-value;
}
}
div {
animation-name: c;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|