1
0

Added Logo Animation

This commit is contained in:
2014-05-20 19:23:01 +02:00
parent 116f64e692
commit 78940da7cc
6 changed files with 73 additions and 231 deletions

20
www/javascript/scripts.js Normal file
View File

@@ -0,0 +1,20 @@
/*
* Animate Header Image
* on MouseEnter()
*
*/
$(function(){
var img_a = new Image();
img_a.src ='/images/logo_animated.gif';
var img_s = new Image();
img_s.src ='/images/logo_static.png';
$('.brandLogo').mouseenter(function(){
if ($('.brandLogo').attr('src') === img_a.src)
return;
$(this).attr('src',img_a.src);
setTimeout(function() {
$('.brandLogo').attr('src',img_s.src);
}, 3500);
});
});