jquery ui resizable left-bottom handle to resize

前端 未结 5 1884
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-29 09:23

I am using jquery-ui-resizable plugin in my project.

By default when you make a DOM Object jquery-ui-resizable the resizable handle will appear on right-bottom corne

5条回答
  •  无人及你
    2020-12-29 09:37

    Seems like the standard cursor property is what is used by the UI CSS

    .ui-resizable-sw {
    cursor: sw-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
    }
    

    Also it seems that cursor does not display and resizable is not enabled for the side of the element that is used for positioning - for example: a div positioned using left:20px top:20px will not enable resizing on those left and top sides

    I discovered this after adding all handles but then they all never showed up ! Update: Apparently there is some problem within my app that is causing my problem. Testing on JSFiddle all handles do work as expected using the same version of JQuery.....argggggg

提交回复
热议问题