如何更改 JQuery 旋钮中的字体大小
How to change font size in JQuery knob
jQuery旋钮有问题plugin.I想改变圆圈内的字体大小,改变输入文本的内容
我似乎可以整齐地做到这一点的唯一方法是挂钩 draw
函数,并使用 i
属性 来设置输入的样式。例如,这是一个应用 CSS 属性 来旋转输入元素并设置字体大小的例子。
$(".dial").knob({
'min':-50,
'max':50,
'draw': function() {
$(this.i).css('transform', 'rotate(180deg)').css('font-size', '10pt');
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://anthonyterrien.com/js/jquery.knob.js"></script>
<input type="text" class="dial" data-min="-50" data-max="50" />
jQuery旋钮有问题plugin.I想改变圆圈内的字体大小,改变输入文本的内容
我似乎可以整齐地做到这一点的唯一方法是挂钩 draw
函数,并使用 i
属性 来设置输入的样式。例如,这是一个应用 CSS 属性 来旋转输入元素并设置字体大小的例子。
$(".dial").knob({
'min':-50,
'max':50,
'draw': function() {
$(this.i).css('transform', 'rotate(180deg)').css('font-size', '10pt');
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://anthonyterrien.com/js/jquery.knob.js"></script>
<input type="text" class="dial" data-min="-50" data-max="50" />