假设我的总宽度为585像素。我想将空间划分为相等的部分,并在每个位置分配一个索引值。如果我可以说6个部分:(由总宽度/部分数量分配)
,我可以做这样的事情 //Set up elements with variables
this.sliderContent = config.sliderContent;
this.sectionsWrap = config.sectionsWrap;
//Selects <a>
this.sectionsLinks = this.sectionsWrap.children().children();
//Create drag handle
this.sectionsWrap.parent().append($(document.createElement("div")).addClass("handle-containment")
.append($(document.createElement("a")).addClass("handle ui-corner-all").text("DRAG")));
//Select handle
this.sliderHandle = $(".handle");
var left = ui.position.left,
position = [];
var position = ((left >= 0 && left <= 80) ? [0, 1] :
((left >= 81 && left <= 198) ? [117, 2] :
((left >= 199 && left <= 315) ? [234, 3] :
((left >= 316 && left <= 430) ? [351, 4] :
((left >= 431 && left <= 548) ? [468, 5] :
((left >= 549) ? [585, 6] : [] ) ) ) ) ) );
if (position.length) {
$(".handle").animate({
left : position[0]
}, 400);
Slider.contentTransitions(position);
}
但如果我有x个部分怎么办?这些部分只是
之类的元素<li><a></a></li>
<li><a></a></li>
<li><a></a></li>
或者
<div><a></a></div>
<div><a></a></div>
<div><a></a></div>
<div><a></a></div>
如何根据.handle
元素的当前左值来划分585px的总和并将索引分类到位?我可以通过ui.position.left
知道拖动句柄的位置,我想要的是能够为每个元素设置索引,并能够根据句柄在索引元素中的位置来设置句柄动画。由于每个元素都被索引,我稍后调用一个转换方法并传入当前索引#来显示。我上面展示的代码有效,但效率不高。我还需要考虑手柄的宽度以适应截面宽度。 http://jsfiddle.net/yfqhV/1/
答案 0 :(得分:1)
var numSections = // ...;
var totalWidth = // ...;
var sectionWidth = totalWidth / numSections;
var index = Math.floor($(".handle").position().left / sectionWidth);
var leftPosition = index * sectionWidth;
var rightPosition = leftPosition + sectionWidth - 1;
答案 1 :(得分:1)
好的,问题中的范围数字之间存在轻微的不一致,这使得很难对[我的 make-up-word de jour =)]进行算法化: / p>
如果你可以调整,我有一个解决方案 - 它不是特别聪明的JavaScript,所以可能有更好的方法来做到这一点(SO JS人员,随时教育我!)但它的工作原理。
首先我们需要一个函数来查找数组范围的索引,给定的值落在(这取代了嵌套的if-else shorthands),然后我们有一个函数来设置位置数组,最后我们可以做范围搜索并返回相应的值数组。
这个解决方案应该动态处理不同数量的部分,只要这一行:
var len = $("#sectionContainer").children().length;
相应调整。可能需要调整的唯一其他值是:
var totalWidth = 585;
var xPos = 81;
虽然您可以设置它们,但如果您有元素,则可以从中绘制值,使其更具动态解决方案。
/**
* function to find the index of an array element where a given value falls
* between the range of values defined by array[index] and array[index+1]
*/
function findInRangeArray(arr, val){
for (var n = 0; n < arr.length-1; n++){
if ((val >= arr[n]) && (val < (arr[n+1]))) {
break;
}
}
return n;
}
/**
* function to set up arrays containing positional values
*/
function initPositionArrays() {
posArray = [];
leftPosArray = [];
var totalWidth = 585;
var xPos = 81;
var len = $("#sectionContainer").children().length;
var unit = totalWidth/(len - 1);
for (var i=1; i<=len; i++) {
pos = unit*(i-1);
posArray.push([Math.round(pos), i]);
xMin = (i >= 2 ? (i==2 ? xPos : leftPosArray[i-2] + posArray[1][0]) : 0);
leftPosArray.push(Math.round(xMin));
}
}
var left = ui.position.left;
initPositionArrays();
// find which index of "leftPosArray" range that "left" falls within
foundPos = findInRangeArray(leftPosArray, left);
var position = posArray[foundPos];
if (position.length) {
$(".handle").animate({
left : position[0]
}, 400);
Slider.contentTransitions(position);
}
我已设置jsFiddle来说明。
享受!
修改强>
我查看了@JonnySooter自己的答案,虽然它正确计算了定位,但它不会处理可变数量的部分。
为了让它与任何数量的部分一起使用,handleContainment
div(即时创建)需要动态设置它的宽度(通过内联样式) 。
这是通过将截面数乘以每个截面的宽度(实际上与滑块的宽度相同)来计算的。
这是在创建句柄之后完成的,这样可以从“handle”css类中提取宽度,这意味着在css级别应用时,句柄宽度的更改将级联到例程中。
请参阅此jsFiddle,其中可以更改部分的数量,并且滑块的行为正常。
答案 2 :(得分:0)
<强>更新强>:
我努力寻找自己的解决方案,这就是我想出来的:
function( event, ui ) {
var left = ui.position.left, //Get the current position of the handle
self = Slider, //Set to the Slider object cus func is a callback
position = 1;
sections_count = self.sectionsLinks.length, //Count the sections
section_position = Math.floor(self.sectionsWrap.width() / sections_count); //Set width of each section according to total width and section count
left = Math.round(left / section_position); //Set the index
position = (left * section_position); //Set the left ammount
if(position < section_position){ //If handle is dropped in the first section
position = 0.1; //Set the distance to animate
left = 0; //Set index to first section
}
if (position.length) {
$(this).animate({
left : position //Animate according to distance
}, 200);
left = left += 1; //Add one to the index so that I can use the nth() child selector later.
self.contentTransitions(left);
}
}