[OK]を、これはあなたが必要なものを行うには、私の最初の試みです。あなたはそれを私が行うことができるよりもはるかに良いのスタイルをすることができますデザイナーであることを考える:)
[![var moveit = false;
var sizeRange = \["11x17 - Starting Price <span>$19.99</span>",
"24x36 - Starting Price <span>$29.99</span>",
"70x90 - Starting Price <span>$39.99</span>",
"120x50 - Starting Price <span>$49.99</span>",
"67x18 - Starting Price <span>$59.99</span>",
"19x30 - Starting Price <span>$69.99</span>"\]
var imageUrl = new Array(); // Store images inside of an Array
imageUrl\[0\] = 'http://svgshare.com/i/1Ak.svg';
imageUrl\[1\] = 'http://svgshare.com/i/1AQ.svg';
imageUrl\[2\] = 'http://svgshare.com/i/1Bb.svg';
imageUrl\[3\] = 'http://svgshare.com/i/1Am.svg';
imageUrl\[4\] = 'http://svgshare.com/i/1CG.svg';
imageUrl\[5\] = 'http://svgshare.com/i/1By.svg';
$('#sliderPrice').html(sizeRange\[0\]);
$(document).on('input change', '#range-slider', function() { //Listen to slider changes (input changes)
var v=$(this).val(); //Create a Variable (v), and store the value of the input change (Ex. Image 2 \[imageURL\])
$('#sliderStatus').html($(this).val());
$('#sliderPrice').html(sizeRange\[v\]);
$("#img").prop("src", imageUrl\[v\]); // Modify the Images attribute src based on the sliders value, and input the value inside the imageURL\[v\] to display image
});
// ::::: Range Slider Thumb ::::: //
$("#range-slider").on("mousedown", function() { //1. When user clicks their mouse down on the Range-Slider
$(this).removeClass().addClass("thumb-down");//1.1 Remove default class from CSS, and add the class .thumb-down (changes background color)
$(this).addClass("hover-ring");//1.2 Remove default class from CSS, and add the class .hover-ring (changes box-shadow to a green color)
moveit = true;
});
$("#range-slider").on("mouseup", function() { //2. When user mouse-up on Range-Slider
$(this).addClass("thumb-up"); //2.1 Changes thumb color back to light green
$(this).addClass("hover-ring-out"); //2.2 Removes Box-Shadow
moveit = false;
});
$(document).mousemove(function(e){
var parentOffset = $('#range-slider').parent().offset();
var relX = e.pageX - parentOffset.left;
var relY = e.pageY - parentOffset.top;
$('#sliderPrice').css('top', relY).css('left', relX);
});][1]][1]
https://codepen.io/anon/pen/JNPvEJ
あなたが達成するために必要なものの重い部分をやりました!これをあきらめないで!あなたはすでに必要な情報をすべて含んでいるDIVを持っています。あなたが必要とするのは、div要素を移動して(矢印を作成するためにCSSを適用する)、ドラッグ要素が移動するときだけです必要な機能があります!)例が必要な場合はお知らせください。 – ProgrammerV5
励ましていただきありがとうございます。私はデザイナーで、プロジェクトを完成させるためにコーディングすることができます。 :p私は間違いなくCSSでツールチップのように見えるようにスタイルを付けることができます。実際の問題はdivをスライダに追従させる方法でしょうか? – StinkyTofu
範囲スライダの親指の位置に基づいてどのように位置付けられるか – StinkyTofu