[Stylish Selectライブラリ] セレクトメニューをスタイリッシュにする

説明

Stylish SelectライブラリはjQueryを使用していますので順番にライブラリを読み込ませておきます。Stylish Selectライブラリでセレクトメニューをスタイリッシュにするには、selectタグに対してsSelect()メソッドを指定します。
セレクトメニューに表示される画像を変更することで手軽にカスタマイズできます。

サンプルプログラム

【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/stylish-select.css" type="text/css" media="all">
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/jquery-1.3.2.min.js" charset="shift_jis"></script>
<script type="text/javascript" src="js/jquery.stylish-select.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>セレクトメニューをスタイリッシュにする</h1>
<form>
<select id="mySel" name="mySel">
<option>項目1</option>
<option>項目2</option>
<option>項目3</option>
<option>項目4</option>
<option>項目5</option>
</select>
</form>
</body>
</html>


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