1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export function svgAnimation(req: express.Request, res: express.Response) {
res.set("content-type", "image/svg+xml");
res.end(`<svg
viewBox="0 0 10 10"
width="200px" height="200px"
xmlns="http://www.w3.org/2000/svg"
>
<rect width="10" height="10">
<animate
attributeName="rx"
values="0;5;0"
dur="10s"
repeatCount="indefinite" />
</rect>
</svg>`);
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
stevekrouse-svganimation.express.val.run
October 23, 2023