jQuery UI Silder 不透明度动态值
我正在使用 jQuery Ui 滑块。我希望滑块能够检测正在单击的 div 的不透明度并将其设置为初始滑块值。
$('.test').click(function() {
$('.test').removeClass('selected');
$(this).addClass('selected')
});
$('#slider').slider({
value: $('.selected').css('opacity'),
min: 0,
max: 1,
step: 0.05,
slide: function(event, ui) {
$('.selected').css({
'opacity': ui.value
})
}
});
I'm using jQuery Ui slider. I want the slider to detect the opacity of the div being clicked on and set that as the initial slider value.
$('.test').click(function() {
$('.test').removeClass('selected');
$(this).addClass('selected')
});
$('#slider').slider({
value: $('.selected').css('opacity'),
min: 0,
max: 1,
step: 0.05,
slide: function(event, ui) {
$('.selected').css({
'opacity': ui.value
})
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的点击功能更改为:
Change your click function to be: