Can text be resizable using jquery-ui?

后端 未结 2 1868
说谎
说谎 2020-12-30 15:54

Can html text in p tag is resizable using jquery-ui or without p tag in a div tag is resizable? I have done resizing the image using jquery ui from following example but tex

2条回答
  •  时光取名叫无心
    2020-12-30 16:56

    Text sizing has nothing to do with jQuery specifically. You can tie a CSS property to a slider, however.

    $('#slideBar').slider({
        startValue: 12,
        minValue: 0,
        maxValue: 100,
        stop: function(e, ui) { 
            $("#text").css({fontSize: ui.value + 8});
    
        }
    });
    

提交回复
热议问题