blob: 6ca9c1b8361d9adc48604455d87e55d4c65a9a55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<style>
details {
background-color: blue;
width: 100px;
height: 100px;
}
</style>
<html>
<details id=o1><div></div></details>
<script>
window.onload = function(){
o1.animate([{'transform': 'none'}], 100);
};
</script>
</html>
|