Prototyping 29 October 2012: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "Simple window.setInterval & timeout... (see Nan's example) Adding time to the wikipedia "edit teleprompter" example (continuing from last week) Using audio/video timelines (see...")
 
No edit summary
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Simple window.setInterval & timeout... (see Nan's example)
Some example of adding time...


Adding time to the wikipedia "edit teleprompter" example (continuing from last week)
Simple setInterval & setTimeout... (see [http://pzwart3.wdka.hro.nl/wiki/User:Nan_Wang/counting Nan's example])


Using audio/video timelines (see Niek's example)
<source lang="javascript">
> ontimeupdate
var animation_id = window.setInterval(draw, 50);
setTimeout(function () {
    window.clearInterval(animation_id);
}, 5000);
</source>
 
Adding time to the wikipedia "edit teleprompter" example (continuing from [[User:Marlon/wikicanvas|last week]])
 
Using audio/video timelines (see [http://www.yoshiminotaband.com/wp/wp-content/uploads/De-eerste-en-de-laatste-31.html Niek's example])
(Here's [http://www.yoshiminotaband.com/wp/wp-content/uploads/Een-her-te-ver-3.html another])
* ontimeupdate
 
[[TATATA]]
time for the teleprompter

Latest revision as of 15:42, 29 October 2012

Some example of adding time...

Simple setInterval & setTimeout... (see Nan's example)

var animation_id = window.setInterval(draw, 50);
setTimeout(function () {
    window.clearInterval(animation_id);
}, 5000);

Adding time to the wikipedia "edit teleprompter" example (continuing from last week)

Using audio/video timelines (see Niek's example) (Here's another)

  • ontimeupdate

TATATA time for the teleprompter