Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<script>
function go() {
var div = document.getElementById('target');
div.animate([ { "flex": "none" },
{ "flex": "initial", offset: 0.5 },
{ "flex": "0.0 ", offset: 0.5 },
{} ]);
}
</script>
<body onload="go()">
<div id='target' ></div>
</body>
</html>