[DrawBoxライブラリ] カラーを選択できるようにする

説明

DrawBoxライブラリでカラーを選択できるようにするにはdrawbox()のオプションパラメータのcolorSelectorにtrueを指定します。

サンプルプログラム

【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.4.2.min.js"></script>
<script type="text/javascript" src="js/excanvas.js"></script>
<script type="text/javascript" src="js/jquery.drawbox.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>DrawBoxサンプル</h1>
<canvas id="drawbox" width="600" height="300"></canvas>
</body>
</html>


【sample.js】
$(function() {
$("#drawbox").drawbox({colorSelector:true});
});
サンプルを実行
[戻る]