http://jqueryui.com/slider/#stepsからこの jQuery UI スライダーを使用しています。これ は、3 つのステップ (1、2、3) と画像を表示する div 要素 ("id_1") を持つ単純なスライダーです。だから私が今本当に欲しいのは、スライダーの位置に応じて絵が変わるということです。したがって、位置「1」では画像が表示され、スライダーを位置 2 または 3 に移動するとすぐにこの画像が変わります。これを行うにはどうすればよいですか?
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Slider - Snap to increments</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function () {
$("#slider").slider({
value: 100,
min: 1,
max: 3,
step: 1,
slide: function (event, ui) {
$("#amount").val("$" + ui.value);
}
});
$("#amount").val("$" + $("#slider").slider("value"));
});
</script>
</head>
<body>
<p>
<label for="amount">Donation amount ($50 increments):</label>
<input type="text" id="amount" style="border: 0; color: #f6931f; font-weight: bold;" />
</p>
<div id="slider"></div>
<div id="id_1" class="class_1"></div>
</body>
</html>
前もって感謝します!