jQuery 圆形滑块?
我的网站上有此滑块。我想将滑块移动到 360 度。我如何更改以下脚本来执行此操作?
$(document).ready(function() {
/*Slider */
$('.slider-input').each(function() {
var currVal = $(this).val();
if(currVal < 0){
currVal = 0;
}
$(this).parent().children('.slider-content').slider({
'animate': true,
'min': -1,
'max': 201,
'value' : 201,
'orientation' : 'vertical',
'stop': function(e, ui){
//$(this).prev('.slider-input').val(ui.value); //Set actual input field val, done during slide instead
//pop handle back to top if we went out of bounds at bottom
/*
if ( ui.value == -1 ) {
ui.value = 201;
$(this).children('.ui-slider-handle').css('bottom','100%');
}
*/
},
'slide': function(e, ui){
var percentLeft;
var submitValue;
var Y = ui.value - 100; //Find center of Circle (We're using a max value and height of 200)
var R = 100; //Circle's radius
var skip = false;
$(this).children('.ui-slider-handle').attr('href',' UI.val = ' + ui.value);
//Show default/disabled/out of bounds state
if ( ui.value > 0 && ui.value < 201 ) { //if in the valid slide rang
$(this).children('.ui-slider-handle').addClass('is-active');
}
else {
$(this).children('.ui-slider-handle').removeClass('is-active');
}
//Calculate slider's path on circle, put it there, by setting background-position
if ( ui.value >= 0 && ui.value <= 200 ) { //if in valid range, these are one inside the min and max
var X = Math.sqrt((R*R) - (Y*Y)); //X^2 + Y^2 = R^2. Find X.
if ( X == 'NaN' ) {
percentLeft = 0;
}
else {
percentLeft = X;
}
}
else if ( ui.value == -1 || ui.value == 201 ) {
percentLeft = 0;
skip = true;
}
else {
percentLeft = 0;
}
//Move handle
if ( percentLeft > 100 ) { percentLeft = 100; }
$(this).children('.ui-slider-handle').css('background-position',percentLeft +'% 100%'); //set css sprite
//Figure out and set input value
if ( skip == true ) {
submitValue = 'keine Seite';
$(this).children('.ui-slider-handle').css('background-position',percentLeft +'% 0%'); //reset css sprite
}
else {
submitValue = Math.round(ui.value / 2); //Clamp input value to range 0 - 100
}
$('#display-only input').val(submitValue); //display selected value, demo only
$('#slider-display').text(submitValue); //display selected value, demo only
$(this).prev('.slider-input').val(ui.value); //Set actual input field val. jQuery UI hid it for us, but it will be submitted.
}
});
});
});
滑块的图像也必须旋转 360 度。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要计算圆,您可以使用以下公式。
然后它应该绕圆旋转.. 201 fo
ui
的值将与 1 处于相同的位置,-1 与 199 相同。上面的解释是:
对于 sin,它几乎是相同的,只是这里我们确实希望结果介于 -1 和 1 之间。我们只需乘以 50(-50 到 50)并加上 50(0 - 100)。
现在 ui.value 等于 0%top 的结果将是 0,percentleft 将是 50。因此
:circle。
To calculate a circle you can use the following formula.
Then it should rotate around the circle.. a value of 201 fo
ui
will be in the same position as 1 and -1 is the same as 199.The explanation of the above is:
For the sin, it is almost the same except here we do want the result to be between -1 and 1. We just multiply by 50 (-50 to 50) and add 50 (0 - 100).
Now the result for ui.value equal to 0 percenttop will be 0 and percentleft will be 50. And at
Ergo: circle.
我认为 jQuery roundSlider 插件适合这个需求。
有关更多详细信息,请查看 演示 和 文档页面。
I think jQuery roundSlider plugin is suitable for this requirement.
For more details check the demos and documentation page.