在ExtJS 3.4中,要更改tooltip(工具提示)的持续时间,可以通过设置tooltip的showDelay和hideDelay属性来实现。
示例代码:
Ext.tip.QuickTipManager.init();
Ext.create('Ext.button.Button', {
renderTo: Ext.getBody(),
text: 'Button',
tooltip: 'This is a button',
tooltipType: 'qtip',
tooltip: {
showDelay: 100, // 设置显示延迟为100毫秒
hideDelay: 2000, // 设置隐藏延迟为2000毫秒
anchor: 'top' // 设置tooltip显示位置为上方
}
});
示例代码:
Ext.tip.QuickTipManager.init();
Ext.create('Ext.button.Button', {
renderTo: Ext.getBody(),
text: 'Button',
tooltip: 'This is a button',
tooltipType: 'qtip',
tooltip: {
showDelay: 100,
hideDelay: 5000, // 设置隐藏延迟为5000毫秒
anchor: 'top'
}
});
通过设置showDelay和hideDelay属性,可以根据需求调整tooltip的持续时间,以提供更好的用户体验。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云