Uses glow to indicate that recording is active.

This commit is contained in:
Boris Grozev 2014-07-18 18:06:06 +02:00
parent b8d27e8ab0
commit 6964e3197a
2 changed files with 23 additions and 2 deletions

4
app.js
View File

@ -923,14 +923,14 @@ function toggleRecording() {
}
var oldState = focus.recordingEnabled;
buttonClick("#recordButton", "icon-recEnable icon-recDisable");
$('#recordButton').toggleClass('active');
focus.setRecording(!oldState,
recordingToken,
function (state) {
console.log("New recording state: ", state);
if (state == oldState) //failed to change, reset the token because it might have been wrong
{
buttonClick("#recordButton", "icon-recEnable icon-recDisable");
$('#recordButton').toggleClass('active');
setRecordingToken(null);
}
}

View File

@ -151,6 +151,27 @@ html, body{
0 -1px 10px #00ccff;
}
#recordButton {
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
}
/*#ffde00*/
#recordButton.active {
-webkit-text-shadow: -1px 0 10px #00ccff,
0 1px 10px #00ccff,
1px 0 10px #00ccff,
0 -1px 10px #00ccff;
-moz-text-shadow: 1px 0 10px #00ccff,
0 1px 10px #00ccff,
1px 0 10px #00ccff,
0 -1px 10px #00ccff;
text-shadow: -1px 0 10px #00ccff,
0 1px 10px #00ccff,
1px 0 10px #00ccff,
0 -1px 10px #00ccff;
}
a.button:hover {
top: 0;
cursor: pointer;