Browse Source

Extended the test file

css_transitions
josdejong 11 years ago
parent
commit
1a3be5f64e
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      test/timeline.html

+ 18
- 0
test/timeline.html View File

@ -39,6 +39,24 @@
</head>
<body>
<div>
<label for="orientation">Orientation</label>
<select id="orientation">
<option value="top">top</option>
<option value="bottom" selected>bottom</option>
</select>
</div>
<script>
var orientation = document.getElementById('orientation');
orientation.onchange = function () {
timeline.setOptions({
orientation: orientation.value
});
};
</script>
<br>
<div id="visualization"></div>
<script>

Loading…
Cancel
Save