Form element with sliders for X, Y axes
Is t开发者_开发技巧here an existing implementation of a form element which looks like
Can this be made using jQuery UI?
Yes, slider
$( ".selector" ).slider( "option", "orientation", 'vertical' )
.bind("slidechange", function(event, ui) {
// update y
});
Then make one with default orientation and update x
精彩评论