今日の人気記事

まだデータがありません。

テキストにさまざまなアニメーション効果を付加「LetterFx」

当ページのリンクには広告が含まれています。

スポンサーリンク

テキストにさまざまなアニメーション効果を付加するプラグイン「LetterFx」を紹介します。

jQueryプラグイン「LetterFx」

このプラグイン使えば、指定した要素のテキストに飛んだり、くるくる回ったり、飛んだり……といったさまざまなアニメーション効果を加えることができます。

スポンサーリンク

デモでアニメーション効果を確認してみてください。

「LetterFx」のデモ

デモのソース(HTML + jQuery)


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="description" content="LetterFxのデモでーす。">
<title>LetterFx - jQueryプラグインまとめ</title>
<link href="jquery-letterfx.css" rel="stylesheet" type="text/css" />
<style>
  body{ padding:100px; }
</style>
</head>
<body>
<h1 class="tagline">LetterFx のデモでーす。</h1>
<p class="tagline">「ボタン」をクリックしてください。テキストのアニメーションがはじまります。</p>
<button class="btn">ボタン</button>

<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="tuxsudo.min.js"></script>
<script src="jquery-letterfx.js"></script>
<script>
$(function() {
  $(".btn").click(function() {
    $(".tagline").letterfx({"fx":"swirl"});
  });
});
</script>
</body>
</html>

jsファイルのダウンロード、その他オプションなどの詳細とはこちらからどうぞ。
» LetterFx

スポンサーリンク

関連記事(一部広告含む)