|
@@ -31,9 +31,9 @@
|
|
|
$(document).ready(function(){
|
|
|
$("a").hover(function() {
|
|
|
var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
|
|
|
- $(this).stop().animate({ color: col}, 600); },
|
|
|
+ $(this).stop().animate({ color: col}, 300); },
|
|
|
function() {
|
|
|
- $(this).stop().animate({ color: col}, 400);
|
|
|
+ $(this).stop().animate({ color: col}, 300);
|
|
|
});
|
|
|
|
|
|
var iconmorph = new SVGMorpheus('#icon')
|