Dot
Dot

Reputation: 439

Form element with sliders for X, Y axes

Is there an existing implementation of a form element which looks like

A box with sliders for both axes

Can this be made using jQuery UI?

Upvotes: 1

Views: 375

Answers (1)

Joe
Joe

Reputation: 82614

Yes, slider

$( ".selector" ).slider( "option", "orientation", 'vertical' )
                .bind("slidechange", function(event, ui) {
                    // update y
                });

Then make one with default orientation and update x

Upvotes: 1

Related Questions