简体   繁体   中英

jQuery Knob display

I'm using this jQuery knob.

http://anthonyterrien.com/knob/

I'm using semi circle & i need to show min. & max limits below the knob. By default it doesn't show limits. Also is it possible to show current knob value (shown at middle of knob) to be shown on dial surface?

Did you read documentation from github ?

<script>
$('.dial')
    .trigger(
        'configure',
        {
        "min":10,
        "max":40,
        "fgColor":"#FF0000",
        "skin":"tron",
        "cursor":true
        }
    );
</script>

github

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM