diff --git a/index.html b/index.html index ee89efc..8334dca 100644 --- a/index.html +++ b/index.html @@ -221,9 +221,15 @@ function toggleShuffleColor() { if (g_shuffle) { $('#btn-shuffle').css('color', '#FF9148'); + $('#btn-shuffle').hover(function(e) { + $(this).css("color",e.type === "mouseenter"?"#4e91ff":"#FF9148") + }); } else { $('#btn-shuffle').css('color', '#808080'); + $('#btn-shuffle').hover(function(e) { + $(this).css("color",e.type === "mouseenter"?"#4e91ff":"#808080") + }); } }