如果您在页面上使用自定义光标,resizable()
插件会在获得交互后将其恢复为默认指针。我在 https://jqueryui.com/resizable/ 检查了插件文档,但没有解释禁用插件的调整大小游标以始终保持页面的自定义光标。是否有一种实现这一目标的黑客方式?
$( "#resizable" ).resizable(
{
//hack
});
答案 0 :(得分:0)
试试这个:
$( "#resizable" ).resizable({
resize: function( event, ui ) {
$("#resizable").css('cursor','pointer');
//more css styles here
},
containment: "#container"
});