今日の人気記事

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

テキストの色や背景色をフェード・アニメで変化「Color animation」

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

スポンサーリンク

テキストの色や背景色をフェード・アニメーションで変化させるプラグイン「Color animation」を紹介します。

jQueryプラグイン「Color animation」

このプラグインを使えば、指定した要素のテキスト・背景・線の色をフェード・アニメ効果で変化させることができます。

ページ・ロード時やボタンをクリックした際に色を変化させることができます。

スポンサーリンク

それではデモページで色の変化を確認してみてください。

「Color animation」のデモ

デモのソース(HTML + jQuery)


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Color animation のデモでーす。">
<title>Color animation - jQueryプラグイン</title>
<style>
#demo1 {
  color: blue;
}
</style>
</head>
<body>
<h1 id="demo1">Color animation のデモです。</h1>
<h2 id="demo2">▼クリッククリック</h2>
<button onclick="$('#demo2').animate({color: 'blue',backgroundColor: 'red'})">ボタン</button>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="jquery.animate-colors.js"></script>
<script>
$(document).ready(function(){
  $('#demo1').animate({color: 'red'});
});
</script>
</body>
</html>
スポンサーリンク

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