animation 12/05/15現在、Firefox (v12) ではanimation-nameとkeyframesの指定に、クォーテーションを使用すると動かない。 参考: CSS animations - MDN 現状動作する記述は以下。 e:hover { -webkit-animation: 'actHover' ease-out 1s 1; /* クォーテーションなしでも動作 */ -moz-animation: actHover ease-out 1s 1; animation: 'actHover' ease-out 1s 1; } @-webkit-keyframes 'actHover' { from { opacity: 0.5; } to { opacity: 1; } } /* クォーテーションなしでも動作 */ @-moz-keyframes actHover