Created
July 27, 2018 22:17
-
-
Save colinbdclark/4f6f859dca81e4ce17fef1e5ee2bc40a to your computer and use it in GitHub Desktop.
Bergson AutoAudioContext Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>AudioContext Clock Example</title> | |
<style> | |
#blinky { | |
width: 2em; | |
height: 2em; | |
} | |
.blink { | |
background-color: green; | |
transition: all .25s ease-in; | |
} | |
.unblink { | |
background-color: white; | |
transition: all .25s ease-in; | |
} | |
</style> | |
<script type="text/javascript" src="../../node_modules/infusion/dist/infusion-framework.js"></script> | |
<script type="text/javascript" src="../../dist/bergson-only.js"></script> | |
</head> | |
<body> | |
<div id="blinky"></div> | |
<script> | |
fluid.defaults("berg.examples.autoAudioContextClock", { | |
gradeNames: "fluid.viewComponent", | |
components: { | |
scheduler: { | |
type: "berg.scheduler", | |
options: { | |
components: { | |
clock: { | |
type: "berg.clock.autoAudioContext", | |
options: { | |
freq: 1 | |
} | |
} | |
} | |
} | |
} | |
}, | |
invokers: { | |
blink: { | |
funcName: "berg.examples.autoAudioContextClock.blink", | |
args: "{that}.container" | |
}, | |
unblink: { | |
funcName: "berg.examples.autoAudioContextClock.unblink", | |
args: "{that}.container" | |
} | |
}, | |
listeners: { | |
"onCreate.startScheduler": { | |
func: "{that}.scheduler.start" | |
}, | |
"onCreate.scheduleBlink": { | |
func: "{that}.scheduler.schedule", | |
args: [ | |
{ | |
type: "repeat", | |
freq: 1, | |
time: 0, | |
callback: "{that}.blink" | |
} | |
] | |
}, | |
"onCreate.scheduleUnblink": { | |
func: "{that}.scheduler.schedule", | |
args: [ | |
{ | |
type: "repeat", | |
freq: 1, | |
time: 0.5, | |
callback: "{that}.unblink" | |
} | |
] | |
}, | |
"onCreate.scheduleEnd": { | |
func: "{that}.scheduler.schedule", | |
args: [ | |
{ | |
type: "once", | |
time: 15, | |
callback: "{that}.scheduler.stop" | |
} | |
] | |
} | |
} | |
}); | |
berg.examples.autoAudioContextClock.blink = function (blinky) { | |
blinky.addClass("blink"); | |
blinky.removeClass("unblink"); | |
}; | |
berg.examples.autoAudioContextClock.unblink = function (blinky) { | |
blinky.removeClass("blink"); | |
blinky.addClass("unblink"); | |
}; | |
berg.examples.autoAudioContextClock("#blinky"); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment