Shorter animations for main video transitions

master
Daniel Berteaud 11 years ago
parent c7726c0d96
commit d4dcea1b58
  1. 6
      public/js/vroom.js

@ -344,8 +344,8 @@ function initVroom(room) {
// There's already a main video, let's hide it // There's already a main video, let's hide it
// and delay the new one so the fade out as time to complete // and delay the new one so the fade out as time to complete
if ($('#mainVideo').html() != ''){ if ($('#mainVideo').html() != ''){
$('#mainVideo').hide(300); $('#mainVideo').hide(200);
wait = 300; wait = 200;
} }
setTimeout(function(){ setTimeout(function(){
$('#mainVideo').html(''); $('#mainVideo').html('');
@ -365,7 +365,7 @@ function initVroom(room) {
$('.selected').removeClass('selected'); $('.selected').removeClass('selected');
el.addClass('selected'); el.addClass('selected');
mainVid = el.attr('id'); mainVid = el.attr('id');
$('#mainVideo').show(300); $('#mainVideo').show(200);
} }
}, wait); }, wait);
} }

Loading…
Cancel
Save