-4

Can anyone tell me how this animation is working "centered one".See a link.I don't know where to start with

4

1 に答える 1

2

テキストをスパンに分割する

<spans class="highlightOnHover">

次に、jQueryを使用してこれを強調します

$(".highlghtOnHover").hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);
于 2012-07-26T10:04:09.627 に答える