[jQuery Glowライブラリ] 発光色を指定する

説明

jQuery Glowライブラリで発光色を指定するには、addGlow()メソッドのオプションパラメータのtextColorにカラーコード/カラー名を指定します。

サンプルプログラム

【HTML】
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript" src="js/jquery.color.js"></script>
<script type="text/javascript" src="js/jquery-glowing.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>発光効果</h1>
<ul>
<li><a href="#">Sample1</a></li>
<li><a href="#">Sample2</a></li>
<li><a href="#">Sample3</a></li>
</ul>
</body>
</html>


【sample.js】
$(function(){
$("a").addGlow({
textColor : "#ffff00"
});
})
サンプルを実行
[戻る]