html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<svg width="350" height="400">
<rect x="0" y="0" height="50" width="10" fill="green">
<animate attributeName="width" to="100" begin="0s" dur="2s" fill="freeze" />
</rect>
<rect x="0" y="60" height="50" width="10" fill="green">
<animate attributeName="width" to="320" begin="2s" dur="2s" fill="freeze" />
</rect>
<rect x="0" y="120" height="50" width="10" fill="green">
<animate attributeName="width" to="150" begin="4s" dur="2s" fill="freeze" />
</rect>
</svg>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run